* GUI: increased ignore list max size from 100 to 500;

This commit is contained in:
Oleg Agafonov 2020-11-09 00:42:43 +04:00
parent e170f724d4
commit 5578437dde
3 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ public final class IgnoreList {
+ "<br>\\ignore username - add username to ignore list (they won't be able to chat or join to your new game)."
+ "<br>\\unignore username - remove a username from your ignore list on this server.</font>";
public static final int MAX_IGNORE_LIST_SIZE = 100;
public static final int MAX_IGNORE_LIST_SIZE = 500;
public static final Set<ChatMessage.MessageType> IGNORED_MESSAGE_TYPES
= ImmutableSet.of(ChatMessage.MessageType.TALK,
ChatMessage.MessageType.WHISPER_FROM);