Fixed Bug: #0611 - Can place crafting CPU multiblock blocks inside of yourself

This commit is contained in:
AlgorithmX2 2014-07-12 18:59:15 -05:00
parent 98e4604690
commit c06e7d09d9

View file

@ -41,15 +41,16 @@ public class BlockCraftingUnit extends AEBaseBlock
@Override
public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
{
if ( Platform.isClient() )
return true;
TileCraftingTile tg = getTileEntity( w, x, y, z );
if ( tg != null && !p.isSneaking() && tg.isFormed() && tg.isActive() )
{
if ( Platform.isClient() )
return true;
Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_CRAFTING_CPU );
return true;
}
return false;
}
@ -59,6 +60,7 @@ public class BlockCraftingUnit extends AEBaseBlock
int meta = w.getBlockMetadata( x, y, z );
return damageDropped( meta );
}
@Override
public int damageDropped(int meta)
{