From df5b40020a1d635a252652645951e7330f744d8d Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Fri, 22 Jan 2021 16:42:15 +0100 Subject: [PATCH] Fixing Typo --- src/de/steamwar/bungeecore/sql/Punishment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/steamwar/bungeecore/sql/Punishment.java b/src/de/steamwar/bungeecore/sql/Punishment.java index 09a5fd12..40a2f4e7 100644 --- a/src/de/steamwar/bungeecore/sql/Punishment.java +++ b/src/de/steamwar/bungeecore/sql/Punishment.java @@ -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")); }