summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2018-11-24 16:22:23 -0500
committerAndrei Karas <akaras@inbox.ru>2018-11-27 21:56:36 +0300
commitcdd3c77337a6bbff0d51d174663867463db8cf15 (patch)
tree4366fb2a5958f296707227961b5e4f842698bcd6 /src/net/eathena
parentd33ffd2ac6230059cce68ecae862d3bdc813b93d (diff)
downloadplus-cdd3c77337a6bbff0d51d174663867463db8cf15.tar.gz
plus-cdd3c77337a6bbff0d51d174663867463db8cf15.tar.bz2
plus-cdd3c77337a6bbff0d51d174663867463db8cf15.tar.xz
plus-cdd3c77337a6bbff0d51d174663867463db8cf15.zip
Show short group name when available instead of (GM)
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/playerrecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/playerrecv.cpp b/src/net/eathena/playerrecv.cpp
index da3e35a0d..51abbfdc3 100644
--- a/src/net/eathena/playerrecv.cpp
+++ b/src/net/eathena/playerrecv.cpp
@@ -481,7 +481,7 @@ void PlayerRecv::processOnlineList(Net::MessageIn &msg)
gender = Gender::FEMALE;
}
arr.push_back(new OnlinePlayer(static_cast<const char*>(buf),
- status, level, gender, ver));
+ status, level, gender, ver, 0));
buf += strlen(buf) + 1;
}