1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-09 16:17:37 +02:00

Alias for 'Everyone' on warp signs.

This commit is contained in:
KHobbits
2011-11-04 00:44:41 +00:00
parent 7d936a639c
commit 3c41319d72

View File

@@ -35,7 +35,7 @@ public class SignWarp extends EssentialsSign
throw new SignException(ex.getMessage(), ex); throw new SignException(ex.getMessage(), ex);
} }
final String group = sign.getLine(2); final String group = sign.getLine(2);
if ("Everyone".equalsIgnoreCase(group)) if ("Everyone".equalsIgnoreCase(group) || "Everybody".equalsIgnoreCase(group))
{ {
sign.setLine(2, "§2Everyone"); sign.setLine(2, "§2Everyone");
} }