SteamWar/SpigotCore
Archiviert
13
0

Fix #161

Zusammengeführt
YoyoNow hat 1 Commits von fix_isPunished nach master 2022-01-29 15:02:52 +01:00 zusammengeführt
Nur Änderungen aus Commit aab7cbb363 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -53,7 +53,7 @@ public class Punishment {
public static boolean isPunished(SteamwarUser user, Punishment.PunishmentType type, Consumer<Punishment> callback) {
Punishment punishment = Punishment.getPunishmentOfPlayer(user.getId(), type);
if(punishment == null || punishment.isCurrent()) {
if(punishment == null || !punishment.isCurrent()) {
return false;
} else {
callback.accept(punishment);