Correct "containsAll"
This commit is contained in:
Binary file not shown.
@@ -129,7 +129,7 @@ public class Arena
|
|||||||
public boolean startArena()
|
public boolean startArena()
|
||||||
{
|
{
|
||||||
// Sanity-checks
|
// Sanity-checks
|
||||||
if (running || lobbyPlayers.isEmpty() || !lobbyPlayers.containsAll(readyPlayers))
|
if (running || lobbyPlayers.isEmpty() || !readyPlayers.containsAll(lobbyPlayers))
|
||||||
return false;
|
return false;
|
||||||
if (!softRestore && forceRestore && !serializeRegion())
|
if (!softRestore && forceRestore && !serializeRegion())
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user