diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 19:20:32 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 19:20:32 +1000 |
commit | f044dfcefa281f75642828e59bd725268ece0695 (patch) | |
tree | 8fc3eda6a8d8032f96c5c3dcc64b8ac2808b7e52 /src/Java/gtPlusPlus/core/gui/item | |
parent | 7d3970f00bf21dbe97b4a3c921ccf2f5216c8e3d (diff) | |
download | GT5-Unofficial-f044dfcefa281f75642828e59bd725268ece0695.tar.gz GT5-Unofficial-f044dfcefa281f75642828e59bd725268ece0695.tar.bz2 GT5-Unofficial-f044dfcefa281f75642828e59bd725268ece0695.zip |
[1.4.6.3-release]
+ Bumped version.
% Renamed unique dust class.
$ Fixed a compile issue with L18n from Apache commons.
Diffstat (limited to 'src/Java/gtPlusPlus/core/gui/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/gui/item/GuiBaseBackpack.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/gui/item/GuiBaseBackpack.java b/src/Java/gtPlusPlus/core/gui/item/GuiBaseBackpack.java index 9f1b775fb0..cd7b141bd4 100644 --- a/src/Java/gtPlusPlus/core/gui/item/GuiBaseBackpack.java +++ b/src/Java/gtPlusPlus/core/gui/item/GuiBaseBackpack.java @@ -14,8 +14,6 @@ import net.minecraft.util.ResourceLocation; import org.lwjgl.opengl.GL11; import org.lwjgl.opengl.GL12; -import com.sun.org.apache.xml.internal.security.utils.I18n; - public class GuiBaseBackpack extends GuiContainer { /** x and y size of the inventory window in pixels. Defined as float, passed as int @@ -60,7 +58,7 @@ public class GuiBaseBackpack extends GuiContainer @Override protected void drawGuiContainerForegroundLayer(int par1, int par2) { - String s = this.inventory.hasCustomInventoryName() ? this.inventory.getInventoryName() : I18n.translate(this.inventory.getInventoryName()); + String s = this.inventory.hasCustomInventoryName() ? this.inventory.getInventoryName() : this.inventory.getInventoryName(); //this.fontRenderer.drawString(s, this.xSize / 2 - this.fontRenderer.getStringWidth(s) / 2, 0, 4210752); //this.fontRenderer.drawString(I18n.translate("container.inventory"), 26, this.ySize - 96 + 4, 4210752); } |