diff options
author | Temm <samumert@gmail.com> | 2024-09-08 21:21:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-08 19:21:36 +0000 |
commit | b7850f71ff5f9d31fa756893a98d36888d4057de (patch) | |
tree | 3e166e3d77a652b4fbcbddd7de8be81343bc374d /src/main/java | |
parent | f82b8b5bc2a5528b42a837e827c28bf9554f97fa (diff) | |
download | GT5-Unofficial-b7850f71ff5f9d31fa756893a98d36888d4057de.tar.gz GT5-Unofficial-b7850f71ff5f9d31fa756893a98d36888d4057de.tar.bz2 GT5-Unofficial-b7850f71ff5f9d31fa756893a98d36888d4057de.zip |
Fix crop manager tooltip being incorrect (#3126)
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/MTECropHarvestor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/MTECropHarvestor.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/MTECropHarvestor.java index 07884ed745..9788abcf0c 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/MTECropHarvestor.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/MTECropHarvestor.java @@ -515,7 +515,7 @@ public class MTECropHarvestor extends MTEBasicTank { "Consumes " + powerUsage() + "eu per harvest", "Consumes " + powerUsageSecondary() + "eu per secondary operation", "Can harvest 2 block levels above and below itself", - "Radius: " + aSide + " blocks each side (" + aRadius + "x3x" + aRadius + ")", + "Radius: " + aSide + " blocks each side (" + aRadius + "x5x" + aRadius + ")", "Has " + (this.mTier * 5) + "% chance for extra drops", "Holds " + this.getCapacity() + "L of Water", GTPPCore.GT_Tooltip.get()); |