aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/covers
diff options
context:
space:
mode:
authorTechlone <techlone.mc@gmail.com>2017-06-01 00:01:54 +0500
committerTechlone <techlone.mc@gmail.com>2017-06-01 00:01:54 +0500
commitf19e920925aa5c85ec32e7e4b6e17588528eb3e3 (patch)
tree6ae3805868bd5bd8c5af224f127f59bee9aaaa4f /src/main/java/gregtech/common/covers
parent21f2b50507732f5a1c7eab00eff5d8efbd367aab (diff)
parent5386a69022b360b5380f41c856116b11bc60db4e (diff)
downloadGT5-Unofficial-f19e920925aa5c85ec32e7e4b6e17588528eb3e3.tar.gz
GT5-Unofficial-f19e920925aa5c85ec32e7e4b6e17588528eb3e3.tar.bz2
GT5-Unofficial-f19e920925aa5c85ec32e7e4b6e17588528eb3e3.zip
Merge branch 'unstable' of https://github.com/Blood-Asp/GT5-Unofficial into unstable
Diffstat (limited to 'src/main/java/gregtech/common/covers')
-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 9c61f4feee..d76a05117b 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, "Emit if any Player is close"); break;
- case 1: GT_Utility.sendChatToPlayer(aPlayer, "Emit if you are close"); break;
- case 2: GT_Utility.sendChatToPlayer(aPlayer, "Emit if other player is close"); break;
+ case 1: GT_Utility.sendChatToPlayer(aPlayer, "Emit if other player is close"); break;
+ case 2: GT_Utility.sendChatToPlayer(aPlayer, "Emit if you are close"); break;
}
return aCoverVariable;
}