Ported to 1.7

This commit is contained in:
AlgorithmX2
2014-02-08 19:34:52 -06:00
parent 30c1deb8cf
commit d50c7f6312
328 changed files with 2209 additions and 2311 deletions
+3 -2
View File
@@ -12,13 +12,14 @@ public class DefaultSpatialHandler implements IMovableHandler
public void moveTile(TileEntity te, World w, int x, int y, int z)
{
te.worldObj = w;
te.setWorldObj( w );
te.xCoord = x;
te.yCoord = y;
te.zCoord = z;
Chunk c = w.getChunkFromBlockCoords( x, z );
c.setChunkBlockTileEntity( x & 0xF, y, z & 0xF, te );
c.func_150812_a( x & 0xF, y, z & 0xF, te );
// c.setChunkBlockTileEntity( x & 0xF, y, z & 0xF, te );
if ( c.isChunkLoaded )
{