fix actionbar message saying server is restarting when its not
This commit is contained in:
@@ -141,10 +141,17 @@ public class Server {
|
||||
return (!whitelisted || whitelistedplayers.contains(p.getName())) &&
|
||||
this.isOnline() &&
|
||||
this.canAccess(p) &&
|
||||
this.isFull() &&
|
||||
!this.isFull() &&
|
||||
!this.isPaused();
|
||||
|
||||
}
|
||||
public String getJoinableDebug(ProxiedPlayer p) {
|
||||
return (!whitelisted || whitelistedplayers.contains(p.getName())) + "\n" +
|
||||
this.isOnline() +"\n"+
|
||||
this.canAccess(p) +"\n"+
|
||||
!this.isFull() +"\n"+
|
||||
!this.isPaused();
|
||||
}
|
||||
|
||||
|
||||
boolean paused = false;
|
||||
|
||||
Reference in New Issue
Block a user