Continue, don't return

Signed-off-by: Etzelia <etzelia@hotmail.com>
checkup
Etzelia 2019-09-19 22:28:46 -05:00
parent 7670eec13e
commit 4ab8a69d63
No known key found for this signature in database
GPG Key ID: 708511AE7ABC5314
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class CheckupCommand implements CommandExecutor {
checkup = checkups.get(uuid);
for (Player pl : checkup.players) {
if (pl.getUniqueId().equals(player.getUniqueId())) {
return; // Don't check twice, even if they re-logged
continue; // Don't check twice, even if they re-logged
}
}
checkup.players.add(player);