From 190628cff674e2a4c8fc341ef69adfdbcef77f3c Mon Sep 17 00:00:00 2001 From: repo_alt Date: Mon, 11 May 2020 16:48:42 +0300 Subject: Changed drilling plant tooltip to be more clear about drilling area https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/5836 --- .../machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java index 9a0422ebfc..452f106b45 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java @@ -318,6 +318,7 @@ public abstract class GT_MetaTileEntity_OreDrillingPlantBase extends GT_MetaTile protected String[] getDescriptionInternal(String tierSuffix) { String casings = getCasingBlockItem().get(0).getDisplayName(); + int d = getRadiusInChunks() * 2 - 1; return new String[]{ "Controller Block for the Ore Drilling Plant " + (tierSuffix != null ? tierSuffix : ""), "Size(WxHxD): 3x7x3, Controller (Front middle bottom)", @@ -331,7 +332,8 @@ public abstract class GT_MetaTileEntity_OreDrillingPlantBase extends GT_MetaTile "1x " + VN[getMinTier()] + "+ Energy Hatch (Any bottom layer casing)", "Use Screwdriver to configure block radius", "Use Soldering iron to turn off chunk mode", - "Maximum radius is " + (getRadiusInChunks() << 4) + " blocks", + "Maximum radius is " + (getRadiusInChunks() << 4) + " blocks in block mode", + "Or " + getRadiusInChunks() + " chunks in chunk mode (" + d +"x" + d + " chunks)", "Fortune bonus of " + (mTier + 3)}; } -- cgit