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
+1 -1
View File
@@ -12,7 +12,7 @@ repositories {
}
allprojects {
version = "2.0.5"
version = "2.0.6"
group = "us.ajg0702"
plugins.apply("java")
@@ -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