Computer Cube now shows PDA gui

This commit is contained in:
Modmuss50 2015-11-18 19:51:41 +00:00
parent 806cf757a5
commit 276bf8355f

View file

@ -4,8 +4,12 @@ import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import techreborn.Core;
import techreborn.client.GuiHandler;
public class BlockComputerCube extends BlockMachineBase {
@ -27,4 +31,13 @@ public class BlockComputerCube extends BlockMachineBase {
return this.blockIcon;
}
@Override
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.pdaID, world, x,
y, z);
return true;
}
}