Inscriber is fully functional, just needs textures.

This commit is contained in:
AlgorithmX2
2014-03-12 22:14:55 -05:00
parent 0ed0af3d34
commit a60d5a4cc7
8 changed files with 301 additions and 92 deletions
+9
View File
@@ -3,6 +3,7 @@ package appeng.core;
import org.apache.logging.log4j.Level;
import appeng.core.features.AEFeature;
import appeng.tile.AEBaseTile;
import appeng.util.Platform;
import cpw.mods.fml.relauncher.FMLRelaunchLog;
@@ -58,4 +59,12 @@ public class AELog
error( exception );
}
}
public static void blockUpdate(int xCoord, int yCoord, int zCoord, AEBaseTile aeBaseTile)
{
if ( AEConfig.instance.isFeatureEnabled( AEFeature.UpdateLogging ) )
{
info( aeBaseTile.getClass().getName() + " @ " + xCoord + ", " + yCoord + ", " + zCoord );
}
}
}