Skip to content
Snippets Groups Projects
Commit 540c42b3 authored by Dennis Bonke's avatar Dennis Bonke
Browse files

serverside bugfix


Signed-off-by: default avatarDennisbonke <dennisb@kabelfoon.net>
parent 2d154d64
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -40,7 +40,7 @@ else
}*/
//project.ext.maven_pass=""
project.buildnumber = "2"
project.buildnumber = "3"
version = "1.7.10-0.2.2-B1" + "-" + project.buildnumber
group= "com.advancedmods" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
......
......@@ -3,15 +3,12 @@ package com.advancedmods.amcore.common;
import com.advancedmods.amcore.AMCore;
import com.advancedmods.amcore.core.environment.EnviromentChecks;
import com.advancedmods.amcore.core.util.EnumServerType;
import com.advancedmods.amcore.core.util.ServerChecker;
import com.mojang.authlib.GameProfile;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.PlayerEvent.PlayerChangedDimensionEvent;
import cpw.mods.fml.common.gameevent.PlayerEvent.PlayerLoggedInEvent;
import cpw.mods.fml.common.gameevent.PlayerEvent.PlayerLoggedOutEvent;
import cpw.mods.fml.common.gameevent.PlayerEvent.PlayerRespawnEvent;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.ChatStyle;
import net.minecraft.util.EnumChatFormatting;
......
......@@ -22,7 +22,7 @@ public class AMCoreProps {
public static final String modid = "AMCore";
public static final String version = VERSION_COMPLETE;
public static final String clientproxy = "com.advancedmods.amcore.client.ClientProxy";
public static final String commonproxy = "com.advacedmods.amcore.common.CommonProxy";
public static final String commonproxy = "com.advancedmods.amcore.common.CommonProxy";
public static final String dependencies = "required-after:Forge@" + FORGE_VERSION + ";before:AdvancedFoods;before:AdvancedTools";
}
package com.advancedmods.amcore.core.environment;
import com.advancedmods.amcore.core.AMCoreProps;
import com.advancedmods.amcore.core.util.EnumServerType;
import com.advancedmods.amcore.core.util.ServerChecker;
import cpw.mods.fml.client.FMLClientHandler;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.common.FMLLog;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment