Skip to content

Commit

Permalink
Small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneFuture committed Dec 5, 2022
1 parent fda026c commit df46489
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ public Game(Lobby lobby) {
}

if (lobby.getPossibleArenas().size() == 0) {
Logger.ERROR.log(("At least one valid arena must be set at lobby " + lobby.getName()));
Logger.ERROR.log("At least one valid arena must be set at lobby " + lobby.getName());
return;
}

if (lobby.getPossibleArenas().stream().noneMatch(a -> Arenas.getFromName(a).isPresent())) {
Logger.ERROR.log(("None of the specified arenas match a real arena for the lobby " + lobby.getName()));
Logger.ERROR.log("None of the specified arenas match a real arena for the lobby " + lobby.getName());
return;
}

Expand Down

0 comments on commit df46489

Please sign in to comment.