Remove indefinite wording for bans with expiry

This commit is contained in:
Focusvity 2022-10-29 22:09:58 +11:00 committed by Paul Reilly
parent 3ac893db50
commit 4602e2246b

View File

@ -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))
{