diff --git a/build.gradle b/build.gradle
index a95fe724541cfb79a61a291e07f3823dfd987ef5..da34a86e6d976085a8e3ab43ab02acfbf3443baa 100644
--- a/build.gradle
+++ b/build.gradle
@@ -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
diff --git a/src/main/java/com/advancedmods/amcore/common/CommonPlayerTracker.java b/src/main/java/com/advancedmods/amcore/common/CommonPlayerTracker.java
index ccaec664a20229c56f879e41d8956d5fd578e251..e5e9b15128d628a4fbd0c24720b938e490da13c0 100644
--- a/src/main/java/com/advancedmods/amcore/common/CommonPlayerTracker.java
+++ b/src/main/java/com/advancedmods/amcore/common/CommonPlayerTracker.java
@@ -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;
diff --git a/src/main/java/com/advancedmods/amcore/core/AMCoreProps.java b/src/main/java/com/advancedmods/amcore/core/AMCoreProps.java
index 6946f1f11204eb372d2e3aaf35fb7c74736bd050..5efedd86fffeef381eb1f2d08111c569e9ea7af9 100644
--- a/src/main/java/com/advancedmods/amcore/core/AMCoreProps.java
+++ b/src/main/java/com/advancedmods/amcore/core/AMCoreProps.java
@@ -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";
 
 }
diff --git a/src/main/java/com/advancedmods/amcore/core/environment/EnviromentChecks.java b/src/main/java/com/advancedmods/amcore/core/environment/EnviromentChecks.java
index 3c395cc491df471f617202c70b37f2ef9af8a4f7..f94f52a11e6eb138d4018ea435d2cae6f91e01ee 100644
--- a/src/main/java/com/advancedmods/amcore/core/environment/EnviromentChecks.java
+++ b/src/main/java/com/advancedmods/amcore/core/environment/EnviromentChecks.java
@@ -1,8 +1,6 @@
 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;