diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2016-10-21 20:12:23 +0200 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2016-10-21 20:12:23 +0200 |
commit | 49ff6ffa31ce3f63fe878c683ef29f02b031b815 (patch) | |
tree | 25a5db500201f1d7714315b409b08d93dff7118e /src/main/java/gregtech/common/blocks | |
parent | 187a49f43c3523eb3ab17dced052722825681d4a (diff) | |
download | GT5-Unofficial-49ff6ffa31ce3f63fe878c683ef29f02b031b815.tar.gz GT5-Unofficial-49ff6ffa31ce3f63fe878c683ef29f02b031b815.tar.bz2 GT5-Unofficial-49ff6ffa31ce3f63fe878c683ef29f02b031b815.zip |
Wrench shift click can move machine front direction
Diffstat (limited to 'src/main/java/gregtech/common/blocks')
-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 d9c05fd17a..3d8a814260 100644 --- a/src/main/java/gregtech/common/blocks/GT_Block_Machines.java +++ b/src/main/java/gregtech/common/blocks/GT_Block_Machines.java @@ -259,7 +259,7 @@ public class GT_Block_Machines if(aPlayer.isSneaking()){
ItemStack tCurrentItem = aPlayer.inventory.getCurrentItem();
if(tCurrentItem!=null){
- if(!GT_Utility.isStackInList(tCurrentItem, GregTech_API.sScrewdriverList)){
+ if(!GT_Utility.isStackInList(tCurrentItem, GregTech_API.sScrewdriverList) && !GT_Utility.isStackInList(tCurrentItem, GregTech_API.sWrenchList)){
return false;
}
}else {return false;}
|