45 lines
1.2 KiB
Java
Executable file
45 lines
1.2 KiB
Java
Executable file
/**
|
|
* Copyright (c) 2011-2017, SpaceToad and the BuildCraft Team
|
|
* http://www.mod-buildcraft.com
|
|
* <p/>
|
|
* BuildCraft is distributed under the terms of the Minecraft Mod Public
|
|
* License 1.0, or MMPL. Please check the contents of the license located in
|
|
* http://www.mod-buildcraft.com/MMPL-1.0.txt
|
|
*/
|
|
package buildcraft.robotics;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
import buildcraft.BuildCraftRobotics;
|
|
import buildcraft.core.GuiIds;
|
|
import buildcraft.core.lib.block.BlockBuildCraft;
|
|
|
|
public class BlockZonePlan extends BlockBuildCraft {
|
|
public BlockZonePlan() {
|
|
super(Material.iron);
|
|
setRotatable(true);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int meta) {
|
|
return new TileZonePlan();
|
|
}
|
|
|
|
@Override
|
|
public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer entityplayer, int par6, float par7,
|
|
float par8, float par9) {
|
|
if (super.onBlockActivated(world, i, j, k, entityplayer, par6, par7, par8, par9)) {
|
|
return true;
|
|
}
|
|
|
|
if (!world.isRemote) {
|
|
entityplayer.openGui(BuildCraftRobotics.instance, GuiIds.MAP,
|
|
world, i, j, k);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|