Removed Localization Stuff.

Added Logging Option.
Logging of Exceptions is now done via AELogger
This commit is contained in:
AlgorithmX2
2014-02-07 14:37:22 -06:00
parent e18dac1437
commit b57804be06
49 changed files with 212 additions and 195 deletions
+2 -1
View File
@@ -8,6 +8,7 @@ import java.util.concurrent.Callable;
import net.minecraftforge.event.ForgeSubscribe;
import net.minecraftforge.event.world.WorldEvent;
import appeng.api.networking.IGridNode;
import appeng.core.AELog;
import appeng.me.Grid;
import appeng.tile.AEBaseTile;
import appeng.util.Platform;
@@ -129,7 +130,7 @@ public class TickHandler implements ITickHandler
}
catch (Exception e)
{
e.printStackTrace();
AELog.error( e );
}
}
}