diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index e2ce0af74..b16ad2a22 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -2899,8 +2899,16 @@ void Client::checkConfigVersion() config.setValue("showDidYouKnow", false); #endif } + if (version < 5) + { + if (config.getIntValue("speech") == Being::TEXT_OVERHEAD) + { + config.setValue("speech", static_cast<int>( + Being::NO_NAME_IN_BUBBLE)); + } + } - config.setValue("cfgver", 4); + config.setValue("cfgver", 5); } Window *Client::openErrorDialog(const std::string &header, |