mirror of
https://github.com/SunNetservers/MiniGames.git
synced 2025-04-03 10:16:26 +02:00
Fixes equals check for arena ids
This commit is contained in:
parent
f6a272b0c0
commit
5be6f0d00e
@ -160,7 +160,7 @@ public class DropperArenaGroup implements ConfigurationSerializable {
|
|||||||
|
|
||||||
for (UUID anArenaId : this.getArenas()) {
|
for (UUID anArenaId : this.getArenas()) {
|
||||||
// If the target arena is reached, allow, as all previous arenas must have been cleared
|
// If the target arena is reached, allow, as all previous arenas must have been cleared
|
||||||
if (arenaId == anArenaId) {
|
if (arenaId.equals(anArenaId)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user