diff options
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/general/BufferCore.java | 4 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialExtruder.java | 5 |
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}; } |