diff options
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/blocks/GT_Block_Machines.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/blocks/GT_Block_Machines.java b/src/main/java/gregtech/common/blocks/GT_Block_Machines.java index af41710054..3d24799746 100644 --- a/src/main/java/gregtech/common/blocks/GT_Block_Machines.java +++ b/src/main/java/gregtech/common/blocks/GT_Block_Machines.java @@ -367,7 +367,7 @@ public class GT_Block_Machines extends GT_Generic_Block implements IDebugableBlo && !GT_Utility.isStackInList(tCurrentItem, GregTech_API.sJackhammerList)) return false; } if (tTileEntity instanceof IGregTechTileEntity gtTE) { - if (gtTE.getTimer() < 50L) { + if (gtTE.getTimer() < 1L) { return false; } if ((!aWorld.isRemote) && !gtTE.isUseableByPlayer(aPlayer)) { |