mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 13:36:44 +01:00
Changed the Kick result from KICK_BANNED to KICK_WHITELIST because not being on the whitelist doesn't mean your banned.
This commit is contained in:
parent
a31f37262d
commit
33f7af519f
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue