* Improved chat help about ignore command (it's not only chat, but game joins too);

This commit is contained in:
Oleg Agafonov 2018-11-05 09:06:31 +04:00
parent 7b627d96c8
commit a806e79abd
2 changed files with 4 additions and 4 deletions

View file

@ -9,8 +9,8 @@ import mage.view.ChatMessage;
public final class IgnoreList { public final class IgnoreList {
private static final String USAGE = "<br/><font color=yellow>\\ignore - shows current ignore list on this server." private static final String USAGE = "<br/><font color=yellow>\\ignore - shows your ignore list on this server."
+ "<br/>\\ignore [username] - add a username to your ignore list on this server." + "<br/>\\ignore [username] - add username to ignore list (they won't be able to chat or join to your game)."
+ "<br/>\\unignore [username] - remove a username from your ignore list on this server.</font>"; + "<br/>\\unignore [username] - remove a username from your ignore list on this server.</font>";
public static final int MAX_IGNORE_LIST_SIZE = 50; public static final int MAX_IGNORE_LIST_SIZE = 50;

View file

@ -172,8 +172,8 @@ public enum ChatManager {
+ "<br/>\\whisper or \\w [player name] [text] - whisper to the player with the given name" + "<br/>\\whisper or \\w [player name] [text] - whisper to the player with the given name"
+ "<br/>\\card Card Name - Print oracle text for card" + "<br/>\\card Card Name - Print oracle text for card"
+ "<br/>[Card Name] - Show a highlighted card name" + "<br/>[Card Name] - Show a highlighted card name"
+ "<br/>\\ignore - shows current ignore list on this server." + "<br/>\\ignore - shows your ignore list on this server."
+ "<br/>\\ignore [username] - add a username to your ignore list on this server." + "<br/>\\ignore [username] - add username to ignore list (they won't be able to chat or join to your game)."
+ "<br/>\\unignore [username] - remove a username from your ignore list on this server."; + "<br/>\\unignore [username] - remove a username from your ignore list on this server.";
final Pattern getCardTextPattern = Pattern.compile("^.card *(.*)"); final Pattern getCardTextPattern = Pattern.compile("^.card *(.*)");