aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java
diff options
context:
space:
mode:
authorTechlone <techlone.mc@gmail.com>2017-06-13 17:44:13 +0500
committerTechlone <techlone.mc@gmail.com>2017-06-13 17:44:13 +0500
commitbfd3ff4b19f79efd7f68aec22998c70e09d024f8 (patch)
treed2c18ed50733042779a8585cb20b4e78453f3816 /src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java
parent3fa72fd1f110f11f2825e27a81f586f807b82bc4 (diff)
parentd7debfd34ece3435dc0f47c54635946c8f29d6f9 (diff)
downloadGT5-Unofficial-bfd3ff4b19f79efd7f68aec22998c70e09d024f8.tar.gz
GT5-Unofficial-bfd3ff4b19f79efd7f68aec22998c70e09d024f8.tar.bz2
GT5-Unofficial-bfd3ff4b19f79efd7f68aec22998c70e09d024f8.zip
Merge branch 'unstable' of https://github.com/Techlone/GT5-Unofficial into unstable
Diffstat (limited to 'src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java')
-rw-r--r--src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java b/src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java
index 882c32e244..4c5b461689 100644
--- a/src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java
+++ b/src/main/java/gregtech/common/covers/GT_Cover_LiquidMeter.java
@@ -42,9 +42,9 @@ public class GT_Cover_LiquidMeter
public int onCoverScrewdriverclick(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity, EntityPlayer aPlayer, float aX, float aY, float aZ) {
if (aCoverVariable == 0) {
- GT_Utility.sendChatToPlayer(aPlayer, "Inverted");
+ GT_Utility.sendChatToPlayer(aPlayer, trans("054"));
} else {
- GT_Utility.sendChatToPlayer(aPlayer, "Normal");
+ GT_Utility.sendChatToPlayer(aPlayer, trans("055"));
}
return aCoverVariable == 0 ? 1 : 0;
}