aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDreamMasterXXL <dream-master@gmx.net>2020-05-11 20:35:16 +0200
committerDreamMasterXXL <dream-master@gmx.net>2020-05-11 20:35:16 +0200
commit29b0a93f91b4df98b121ead97b25f9b185d8f0b2 (patch)
treebe7dbcc638f010b5a86d079fc189b9fc5e18d8e2
parentd450ef213ba4bc3b98a1941d74c75d70897d0f82 (diff)
parentd83f531c94d2ef88403213c86cfb6b3e5cb8a4d5 (diff)
downloadGT5-Unofficial-29b0a93f91b4df98b121ead97b25f9b185d8f0b2.tar.gz
GT5-Unofficial-29b0a93f91b4df98b121ead97b25f9b185d8f0b2.tar.bz2
GT5-Unofficial-29b0a93f91b4df98b121ead97b25f9b185d8f0b2.zip
Merge remote-tracking branch 'origin/experimental' into HEE-Bees
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java4
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)};
}