Fix Gas Tank crash
This commit is contained in:
parent
268a1eca6b
commit
b540e95381
1 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,7 @@ import net.minecraft.nbt.NBTTagCompound;
|
|||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.util.MathHelper;
|
||||
import net.minecraft.util.MovingObjectPosition;
|
||||
import net.minecraft.world.IBlockAccess;
|
||||
import net.minecraft.world.World;
|
||||
import buildcraft.api.tools.IToolWrench;
|
||||
|
@ -249,4 +250,10 @@ public class BlockGasTank extends BlockContainer
|
|||
{
|
||||
return new TileEntityGasTank();
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getPickBlock(MovingObjectPosition target, World world, int x, int y, int z)
|
||||
{
|
||||
return new ItemStack(blockID, 1, world.getBlockMetadata(x, y, z));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue