From 9dd4ec3dce97a5aff9a1501a684fe02a75055940 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 21 Jan 2017 17:05:51 +1000 Subject: + 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. --- src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/helpers') 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; -- cgit