Fix narrow string compiling issue on MSVC2010
authorSmallJoker <mk939@ymail.com>
Thu, 6 Oct 2016 11:49:40 +0000 (13:49 +0200)
committersfan5 <sfan5@live.de>
Thu, 6 Oct 2016 11:57:40 +0000 (13:57 +0200)
src/server.cpp

index e9983ba117f3f606f313d52075196f5d825c04ec..639e6462ad77edbffab18bf24ca124d549411fdf 100644 (file)
@@ -2757,7 +2757,7 @@ std::wstring Server::handleChat(const std::string &name, const std::wstring &wna
                                std::wstringstream ws;
                                ws << L"You cannot send more messages. You are limited to "
                                << g_settings->getFloat("chat_message_limit_per_10sec")
-                               << " messages per 10 seconds.";
+                               << L" messages per 10 seconds.";
                                return ws.str();
                        }
                        case RPLAYER_CHATRESULT_KICK:
@@ -2770,7 +2770,7 @@ std::wstring Server::handleChat(const std::string &name, const std::wstring &wna
 
        if (m_max_chatmessage_length > 0 && wmessage.length() > m_max_chatmessage_length) {
                return L"Your message exceed the maximum chat message limit set on the server. "
-                       "It was refused. Send a shorter message";
+                       L"It was refused. Send a shorter message";
        }
 
        // Commands are implemented in Lua, so only catch invalid