mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
Change way commands are displayed in chat window
This commit is contained in:
parent
53eedd3ba4
commit
9c94538fb7
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user