aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java
diff options
context:
space:
mode:
authorBlood-Asp <bloodasphendrik@gmail.com>2017-06-13 21:48:10 +0200
committerBlood-Asp <bloodasphendrik@gmail.com>2017-06-13 21:48:10 +0200
commit3caab8d4ffe1d2b343b1ad4189e881e69cbbcdf5 (patch)
tree5c61ef34be6d5648ce43b127568813c572a42210 /src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java
parent9209d0843f61e7e062c50cc66e3f2263635655d5 (diff)
downloadGT5-Unofficial-3caab8d4ffe1d2b343b1ad4189e881e69cbbcdf5.tar.gz
GT5-Unofficial-3caab8d4ffe1d2b343b1ad4189e881e69cbbcdf5.tar.bz2
GT5-Unofficial-3caab8d4ffe1d2b343b1ad4189e881e69cbbcdf5.zip
Fix translation of covers
Diffstat (limited to 'src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java')
-rw-r--r--src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java b/src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java
index 65f932bb1f..cda45256b9 100644
--- a/src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java
+++ b/src/main/java/gregtech/common/covers/GT_Cover_RedstoneSignalizer.java
@@ -12,9 +12,9 @@ public class GT_Cover_RedstoneSignalizer
public int onCoverScrewdriverclick(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity, EntityPlayer aPlayer, float aX, float aY, float aZ) {
aCoverVariable = (aCoverVariable + 1) % 48;
switch(aCoverVariable / 16) {
- case 0: GT_Utility.sendChatToPlayer(aPlayer, trans("078") + (aCoverVariable & 0xF)); break;
- case 1: GT_Utility.sendChatToPlayer(aPlayer, trans("079") + (aCoverVariable & 0xF)); break;
- case 2: GT_Utility.sendChatToPlayer(aPlayer, trans("080") + (aCoverVariable & 0xF)); break;
+ case 0: GT_Utility.sendChatToPlayer(aPlayer, trans("078", "Signal = ") + (aCoverVariable & 0xF)); break;
+ case 1: GT_Utility.sendChatToPlayer(aPlayer, trans("079", "Conditional Signal = ") + (aCoverVariable & 0xF)); break;
+ case 2: GT_Utility.sendChatToPlayer(aPlayer, trans("080", "Inverted Conditional Signal = ") + (aCoverVariable & 0xF)); break;
}
return aCoverVariable;
}