Added compressor, extractor, electric furnace

This commit is contained in:
gigabit101 2016-02-20 03:07:56 +00:00
parent cd13932bde
commit 047625389d
21 changed files with 1345 additions and 5 deletions

View file

@ -27,7 +27,7 @@ public class BlockImplosionCompressor extends BlockMachineBase implements IRotat
public boolean onBlockActivated(World world, int x, int y, int z,
EntityPlayer player, int side, float hitX, float hitY, float hitZ) {
if (!player.isSneaking())
player.openGui(Core.INSTANCE, GuiHandler.compresserID, world, x, y,
player.openGui(Core.INSTANCE, GuiHandler.implosionCompresserID, world, x, y,
z);
return true;
}