Change way commands are displayed in chat window

master
Giuseppe Bilotta 2011-08-22 13:43:53 +02:00
parent 53eedd3ba4
commit 9c94538fb7
1 changed files with 6 additions and 0 deletions

View File

@ -270,6 +270,12 @@ public:
void addChatMessage(const std::wstring &message)
{
if (message[0] == L'/') {
m_chat_queue.push_back(
(std::wstring)L"issued command: "+message);
return;
}
//JMutexAutoLock envlock(m_env_mutex); //bulk comment-out
LocalPlayer *player = m_env.getLocalPlayer();
assert(player != NULL);