aboutsummaryrefslogtreecommitdiff
path: root/src/Java
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-23 19:11:24 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-23 19:11:24 +1000
commit40262f34a38c07ffe90c94a0fd8a15df600e687e (patch)
tree11ee54591c71f13ff8157e84953e77b609e95669 /src/Java
parentb767e7ad3b3e6387dbd90038b7453b4a1e366d31 (diff)
downloadGT5-Unofficial-40262f34a38c07ffe90c94a0fd8a15df600e687e.tar.gz
GT5-Unofficial-40262f34a38c07ffe90c94a0fd8a15df600e687e.tar.bz2
GT5-Unofficial-40262f34a38c07ffe90c94a0fd8a15df600e687e.zip
% Improved Large Extruder tooltip.
$ Fixed incorrect names of Buffer Cores.
Diffstat (limited to 'src/Java')
-rw-r--r--src/Java/gtPlusPlus/core/item/general/BufferCore.java4
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialExtruder.java5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/core/item/general/BufferCore.java b/src/Java/gtPlusPlus/core/item/general/BufferCore.java
index a9f0f775ee..ffecaa40fb 100644
--- a/src/Java/gtPlusPlus/core/item/general/BufferCore.java
+++ b/src/Java/gtPlusPlus/core/item/general/BufferCore.java
@@ -18,7 +18,7 @@ public class BufferCore extends BaseItemWithDamageValue{
public int coreTier = 0;
public BufferCore(final String unlocalizedName, final int i) {
- super(unlocalizedName);
+ super(unlocalizedName+i);
this.setTextureName(CORE.MODID + ":" + unlocalizedName);
this.setMaxStackSize(2);
this.coreTier = i;
@@ -26,7 +26,7 @@ public class BufferCore extends BaseItemWithDamageValue{
@Override
public String getItemStackDisplayName(final ItemStack stack) {
- return super.getItemStackDisplayName(stack)+" ["+GT_Values.VN[this.coreTier-1]+"].";
+ return super.getItemStackDisplayName(stack)/*+" ["+GT_Values.VN[this.coreTier-1]+"]."*/;
}
@Override
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialExtruder.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialExtruder.java
index e5298903db..70eec421b4 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialExtruder.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialExtruder.java
@@ -52,12 +52,13 @@ extends GregtechMeta_MultiBlockBase {
"You can use several input busses per multiblock",
"Size: 3x3x5 [WxHxL] (Hollow)", "Controller (front centered)",
"Controller (front centered)",
+ "Busses & Hatches cannot replace edge casings",
"1x Input Bus (anywhere)",
"1x Output Bus (anywhere)",
"1x Energy Hatch (anywhere)",
"1x Maintenance Hatch (anywhere)",
- "1x Muffler Hatch (anywhere)",
- "Material Press Machine Casings for the rest (16 at least!)",
+ "1x Muffler Hatch (Back Center)",
+ "Inconel Reinforced Casings for the rest (28 at least!)",
CORE.GT_Tooltip};
}