Remove indefinite wording for bans with expiry

This commit is contained in:
Focusvity
2023-07-11 12:06:58 -05:00
committed by Paul Reilly
parent 3ac893db50
commit 4602e2246b
@@ -122,7 +122,9 @@ public class IndefiniteBanList extends FreedomService
return;
}
String kickMessage = ChatColor.RED + "Your " + bannedBy + " is indefinitely banned from this server.";
String kickMessage = ChatColor.RED + "Your " + bannedBy + " is "
+ (ban.hasExpiry() ? "" : "indefinitely ")
+ "banned from this server.";
String reason = ban.getReason();
if (!Strings.isNullOrEmpty(reason))
{