Fixed a spelling bug in chat help text.

This commit is contained in:
LevelX2 2014-08-16 17:36:59 +02:00
parent 5ce105e699
commit 6e4facfa8b

View file

@ -143,7 +143,7 @@ public class ChatManager {
message += new StringBuilder("\nList of commands:") message += new StringBuilder("\nList of commands:")
.append("\n\\info <text> - set a info text to your player") .append("\n\\info <text> - set a info text to your player")
.append("\n\\list - Show a list of commands") .append("\n\\list - Show a list of commands")
.append("\n\\whisper <player name> <text> - Whiper to a player").toString(); .append("\n\\whisper <player name> <text> - whisper to the player with the given name").toString();
chatSessions.get(chatId).broadcastInfoToUser(user,message); chatSessions.get(chatId).broadcastInfoToUser(user,message);
return true; return true;
} }