Changed the Kick result from KICK_BANNED to KICK_WHITELIST because not being on the whitelist doesn't mean your banned.

Dieser Commit ist enthalten in:
HACKhalo2 2011-03-20 02:08:00 -04:00 committet von Dinnerbone
Ursprung a31f37262d
Commit 33f7af519f

Datei anzeigen

@ -139,7 +139,7 @@ public class ServerConfigurationManager {
if (this.f.contains(s.trim().toLowerCase())) {
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, "You are banned from this server!");
} else if (!this.g(s)) {
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, "You are not white-listed on this server!");
event.disallow(PlayerLoginEvent.Result.KICK_WHITELIST, "You are not white-listed on this server!");
} else if (this.g.contains(s2)) {
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, "Your IP address is banned from this server!");
} else if (this.b.size() >= this.e) {