SteamWar/BungeeCore
Archiviert
13
2
Dieser Commit ist enthalten in:
Chaoscaot 2021-01-22 16:42:15 +01:00
Ursprung d2db4af4eb
Commit df5b40020a

Datei anzeigen

@ -139,7 +139,7 @@ public class Punishment {
public String getBantime(Timestamp endTime, boolean perma) {
if(perma)
return "Permanent";
return "permanent";
else
return endTime.toLocalDateTime().format(DateTimeFormatter.ofPattern("dd.MM.yyyy HH:mm"));
}