diff options
author | Martin Robertz <dream-master@gmx.net> | 2020-05-11 16:37:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 16:37:28 +0200 |
commit | d83f531c94d2ef88403213c86cfb6b3e5cb8a4d5 (patch) | |
tree | 0a008dc8dd174e59308434ad3991ede95a0bf8d1 /src/main/java | |
parent | 4bb0a26d8d68ea673ea6e10912405835d6856a6e (diff) | |
parent | 190628cff674e2a4c8fc341ef69adfdbcef77f3c (diff) | |
download | GT5-Unofficial-d83f531c94d2ef88403213c86cfb6b3e5cb8a4d5.tar.gz GT5-Unofficial-d83f531c94d2ef88403213c86cfb6b3e5cb8a4d5.tar.bz2 GT5-Unofficial-d83f531c94d2ef88403213c86cfb6b3e5cb8a4d5.zip |
Merge pull request #283 from repo-alt/experimental
Changed drilling plant tooltip to be more clear about drilling area
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java | 4 |
1 files changed, 3 insertions, 1 deletions
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)}; } |