Fix up 1.3.2 small change
This commit is contained in:
parent
8b48a515f1
commit
76f80dac4d
|
@ -25,7 +25,7 @@ import net.minecraft.src.MathHelper;
|
||||||
import net.minecraft.src.NBTTagCompound;
|
import net.minecraft.src.NBTTagCompound;
|
||||||
import net.minecraft.src.TileEntity;
|
import net.minecraft.src.TileEntity;
|
||||||
import net.minecraft.src.World;
|
import net.minecraft.src.World;
|
||||||
import net.minecraftforge.common.Orientation;
|
import net.minecraftforge.common.ForgeDirection;
|
||||||
|
|
||||||
public class BlockIronChest extends BlockContainer {
|
public class BlockIronChest extends BlockContainer {
|
||||||
|
|
||||||
|
@ -113,7 +113,7 @@ public class BlockIronChest extends BlockContainer {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (world.isBlockSolidOnSide(i, j + 1, k, Orientation.DOWN))
|
if (world.isBlockSolidOnSide(i, j + 1, k, ForgeDirection.DOWN))
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue