aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
authorBlood-Asp <bloodasphendrik@gmail.com>2017-07-01 17:35:30 +0200
committerGitHub <noreply@github.com>2017-07-01 17:35:30 +0200
commit4fbd38eb0b835d640c8ebd2a67912a59febed4ad (patch)
treea09802cd317c19636ac997dec7060c942066ded9 /src/main/java/gregtech/common
parentebd2d13d7a8b62a0db2b05c0fd2b7ffa32bb173a (diff)
parentd50682ff7f722bc7bc1b6ca8dddf21f7a36492ef (diff)
downloadGT5-Unofficial-4fbd38eb0b835d640c8ebd2a67912a59febed4ad.tar.gz
GT5-Unofficial-4fbd38eb0b835d640c8ebd2a67912a59febed4ad.tar.bz2
GT5-Unofficial-4fbd38eb0b835d640c8ebd2a67912a59febed4ad.zip
Merge pull request #1129 from Antifluxfield/PlayerDetector-fix
Player detector fix
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/covers/GT_Cover_PlayerDetector.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/covers/GT_Cover_PlayerDetector.java b/src/main/java/gregtech/common/covers/GT_Cover_PlayerDetector.java
index 9e6c764170..09d990feb6 100644
--- a/src/main/java/gregtech/common/covers/GT_Cover_PlayerDetector.java
+++ b/src/main/java/gregtech/common/covers/GT_Cover_PlayerDetector.java
@@ -57,8 +57,8 @@ public class GT_Cover_PlayerDetector extends GT_CoverBehavior {
if(aCoverVariable <0){aCoverVariable = 2;}
switch(aCoverVariable) {
case 0: GT_Utility.sendChatToPlayer(aPlayer, trans("068", "Emit if any Player is close")); break;
- case 1: GT_Utility.sendChatToPlayer(aPlayer, trans("069", "Emit if other Player is close")); break;
- case 2: GT_Utility.sendChatToPlayer(aPlayer, trans("070", "Emit if you are close")); break;
+ case 1: GT_Utility.sendChatToPlayer(aPlayer, trans("070", "Emit if you are close")); break;
+ case 2: GT_Utility.sendChatToPlayer(aPlayer, trans("069", "Emit if other Player is close")); break;
}
return aCoverVariable;
}