diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-01-21 17:05:51 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-01-21 17:05:51 +1000 |
commit | 9dd4ec3dce97a5aff9a1501a684fe02a75055940 (patch) | |
tree | 8025e6b7b8a267f4ae0e96d21488158e4348591b /src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java | |
parent | 2750e87c0532c98cab77362fbe248d0dba4627fd (diff) | |
download | GT5-Unofficial-9dd4ec3dce97a5aff9a1501a684fe02a75055940.tar.gz GT5-Unofficial-9dd4ec3dce97a5aff9a1501a684fe02a75055940.tar.bz2 GT5-Unofficial-9dd4ec3dce97a5aff9a1501a684fe02a75055940.zip |
+ Added information about the power stored and operations remaining to the Tree Farmer GUI. Thanks to @Dragon2488 for showing me how Container syncing should be done properly.
% Rewrote the Tooltip for the Tree Farmer Controller block.
% Changed the Tree Farmer GUI, moved the item slot up 18px and added a console for the power information.
$ Fixed the tool check returning Null when valid tools were present in the Tree Farmer.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java b/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java index b687ac1559..ce49a684fd 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java @@ -153,10 +153,10 @@ public class TreeFarmHelper { if (OrePrefixes.craftingTool.contains(aStack)){ if (aStack.getDisplayName().toLowerCase().contains("saw")){ if (aStack.getItemDamage() == 10){ - return SAWTOOL.NONE; + return SAWTOOL.SAW; } else if (aStack.getItemDamage() == 140){ - return SAWTOOL.NONE; + return SAWTOOL.BUZZSAW; } else { return SAWTOOL.NONE; |