diff options
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 414c6e4df..60b93f89e 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -186,7 +186,7 @@ void ChatHandler::processRaw(MessageOut &restrict outMsg, if (line.size() < 2) return; - const int i = parseNumber(line.substr(1)); + const uint32_t i = parseNumber(line.substr(1)); switch (tolower(line[0])) { case 'b': |