diff options
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/metatileentity')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java b/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java index 04522b1012..2c222e76a8 100644 --- a/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java +++ b/src/main/java/gregtech/api/interfaces/metatileentity/IMetaTileEntity.java @@ -132,27 +132,28 @@ public interface IMetaTileEntity extends ISidedInventory, IFluidTank, IFluidHand boolean allowCoverOnSide(ForgeDirection side, GT_ItemStack aStack); /** - * When a Player rightclicks the Facing with a Screwdriver. + * When a Player right-clicks the Facing with a Screwdriver. */ - void onScrewdriverRightClick(ForgeDirection side, EntityPlayer aPlayer, float aX, float aY, float aZ); + void onScrewdriverRightClick(ForgeDirection side, EntityPlayer aPlayer, float aX, float aY, float aZ, + ItemStack aTool); /** * When a Player right-clicks the Facing with a Wrench. */ boolean onWrenchRightClick(ForgeDirection side, ForgeDirection wrenchingSide, EntityPlayer entityPlayer, float aX, - float aY, float aZ); + float aY, float aZ, ItemStack aTool); /** * When a Player right-clicks the Facing with a wire cutter. */ boolean onWireCutterRightClick(ForgeDirection side, ForgeDirection wrenchingSide, EntityPlayer entityPlayer, - float aX, float aY, float aZ); + float aX, float aY, float aZ, ItemStack aTool); /** * When a Player right-clicks the Facing with a soldering iron. */ boolean onSolderingToolRightClick(ForgeDirection side, ForgeDirection wrenchingSide, EntityPlayer entityPlayer, - float aX, float aY, float aZ); + float aX, float aY, float aZ, ItemStack aTool); /** * Called right before this Machine explodes |