This commit is contained in:
ajgeiss0702
2021-08-29 11:02:44 -07:00
parent d5cdc9afc0
commit de9ce9828a
2 changed files with 5 additions and 5 deletions
@@ -249,10 +249,10 @@ public class QueueServerImpl implements QueueServer {
if(p != null && isWhitelisted() && !whitelistedUUIDs.contains(p.getUniqueId())) {
return false;
}
return this.isOnline() &&
this.canAccess(p) &&
!this.isFull() &&
!this.isPaused();
return isOnline() &&
canAccess(p) &&
!isFull() &&
!isPaused();
}
@Override