Ported FMP Support to 1.7.

This commit is contained in:
AlgorithmX2
2014-04-10 14:52:17 -05:00
parent 661afe846c
commit 327c1d4118
6 changed files with 74 additions and 47 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ public class QuartzTorchPart extends McSidedMetaPart implements IRandomDisplayTi
public static McBlockPart placement(World world, BlockCoord pos, int side)
{
pos = pos.copy().offset( side );
if ( !world.isBlockSolidOnSide( pos.x, pos.y, pos.z, ForgeDirection.getOrientation( side ) ) )
if ( !world.isSideSolid( pos.x, pos.y, pos.z, ForgeDirection.getOrientation( side ) ) )
{
return null;
}