From 0b1d9c0c58db75a1d4249f7b0fc3320b4de8cfa2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 31 Oct 2015 18:29:12 +0300 Subject: Move away message to per server configuration file. --- src/being/localplayer.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/being/localplayer.cpp') diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 33133a376..5153a57ed 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -1891,7 +1891,7 @@ void LocalPlayer::setAfkMessage(std::string message) { config.setValue("afkFormat", 0); } - config.setValue("afkMessage", message); + serverConfig.setValue("afkMessage", message); } } @@ -1909,7 +1909,8 @@ void LocalPlayer::afkRespond(ChatTab *const tab, const std::string &nick) if (mAfkTime == 0 || time < mAfkTime || time - mAfkTime > awayLimitTimer) { - std::string str(config.getStringValue("afkMessage")); + std::string str(serverConfig.getValue("afkMessage", + "I am away from keyboard.")); if (str.find("'NAME'") != std::string::npos) replaceAll(str, "'NAME'", nick); -- cgit v1.2.3-60-g2f50