diff options
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/gui')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java index 51ad334a01..265742e5ad 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java @@ -44,9 +44,9 @@ public class CONTAINER_ThreadedSuperBuffer extends GT_ContainerMetaTile_Machine .getMetaTileEntity()).bOutput = !((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity .getMetaTileEntity()).bOutput; if (((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity.getMetaTileEntity()).bOutput) { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("116", "Emit Energy to Outputside")); + GT_Utility.sendChatToPlayer(aPlayer, "Emit Energy to Outputside"); } else { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("117", "Don't emit Energy")); + GT_Utility.sendChatToPlayer(aPlayer, "Don't emit Energy"); } return null; } @@ -55,9 +55,9 @@ public class CONTAINER_ThreadedSuperBuffer extends GT_ContainerMetaTile_Machine .getMetaTileEntity()).bRedstoneIfFull = !((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity .getMetaTileEntity()).bRedstoneIfFull; if (((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity.getMetaTileEntity()).bRedstoneIfFull) { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("118", "Emit Redstone if no Slot is free")); + GT_Utility.sendChatToPlayer(aPlayer, "Emit Redstone if no Slot is free"); } else { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("119", "Don't emit Redstone")); + GT_Utility.sendChatToPlayer(aPlayer, "Don't emit Redstone"); } return null; } @@ -66,9 +66,9 @@ public class CONTAINER_ThreadedSuperBuffer extends GT_ContainerMetaTile_Machine .getMetaTileEntity()).bInvert = !((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity .getMetaTileEntity()).bInvert; if (((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity.getMetaTileEntity()).bInvert) { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("120", "Invert Redstone")); + GT_Utility.sendChatToPlayer(aPlayer, "Invert Redstone"); } else { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("121", "Don't invert Redstone")); + GT_Utility.sendChatToPlayer(aPlayer, "Don't invert Redstone"); } return null; } |