Added Current/Max Power to Network Tool.

Added Current/Max Power to Spatial IO Port.
Added Required/Efficiency to Spatial IO Port.
Added Power Unit Button / Setting.
Fixed bug with Meteorite and Spatial IO.
Removed Random Logging in Spatial IO.
This commit is contained in:
AlgorithmX2
2014-03-05 23:45:14 -06:00
parent 040e948d8e
commit adb03c45c6
13 changed files with 262 additions and 62 deletions
+4 -5
View File
@@ -23,6 +23,7 @@ import appeng.api.movable.IMovableHandler;
import appeng.api.movable.IMovableRegistry;
import appeng.api.util.WorldCoord;
import appeng.core.AELog;
import appeng.core.WorldSettings;
import appeng.util.Platform;
import cpw.mods.fml.relauncher.ReflectionHelper;
@@ -379,11 +380,6 @@ public class CachedPlane
for (int z = 0; z < cz_size; z++)
{
Chunk c = myChunks[x][z];
for (Method m : c.getClass().getMethods())
{
AELog.severe( "Chunk." + m.getName() );
}
c.resetRelightChecks();
c.generateSkylightMap();
c.isModified = true;
@@ -396,6 +392,9 @@ public class CachedPlane
Chunk c = myChunks[x][z];
for (int y = 1; y < 255; y += 32)
WorldSettings.getInstance().getCompass().updateArea( wrld, c.xPosition << 4, y, c.zPosition << 4 );
try
{
WorldServer ws = (WorldServer) c.worldObj;