Fixed invalid Orientation.

Improved Logging for render mismatch.
This commit is contained in:
AlgorithmX2
2014-03-22 13:27:44 -05:00
parent 0bfded7bbf
commit b86fb56999
4 changed files with 48 additions and 4 deletions
+2 -1
View File
@@ -21,6 +21,7 @@ import appeng.block.AEBaseBlock;
import appeng.core.WorldSettings;
import appeng.core.features.AEFeature;
import appeng.helpers.LocationRotation;
import appeng.helpers.NullRotation;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
@@ -80,7 +81,7 @@ public class BlockSkyStone extends AEBaseBlock implements IOrientableBlock
{
if ( w.getBlockMetadata( x, y, z ) == 0 )
return new LocationRotation( w, x, y, z );
return null;
return new NullRotation();
}
@Override