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