forked from teamnwah/openmw-tes3coop
Use more descriptive terminology for chat modes
Changed "Chat disabled" to "Chat hidden", "Chat enabled" to "Chat visible" and "Chat in hidden mode" to "Chat appearing when needed".
This commit is contained in:
parent
eb3ae95f0e
commit
6b3f598837
1 changed files with 3 additions and 3 deletions
|
@ -162,9 +162,9 @@ namespace mwmp
|
|||
windowState++;
|
||||
if (windowState == 3) windowState = 0;
|
||||
|
||||
std::string chatMode = windowState == CHAT_DISABLED ? "Chat disabled" :
|
||||
windowState == CHAT_ENABLED ? "Chat enabled" :
|
||||
"Chat in hidden mode";
|
||||
std::string chatMode = windowState == CHAT_DISABLED ? "Chat hidden" :
|
||||
windowState == CHAT_ENABLED ? "Chat visible" :
|
||||
"Chat appearing when needed";
|
||||
|
||||
LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, "Switch chat mode to %s", chatMode.c_str());
|
||||
MWBase::Environment::get().getWindowManager()->messageBox(chatMode);
|
||||
|
|
Loading…
Reference in a new issue