diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-02-09 00:10:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-02-09 00:10:25 +0300 |
commit | ec613c9f448fc3df9267464c287869e53544d563 (patch) | |
tree | af87c0d767fd7fdc3a246db811dd558496c3e1fe /src/net/eathena/clanrecv.cpp | |
parent | e01af2f01eb2e17d259d685734cfc4277bb076f7 (diff) | |
download | manaplus-ec613c9f448fc3df9267464c287869e53544d563.tar.gz manaplus-ec613c9f448fc3df9267464c287869e53544d563.tar.bz2 manaplus-ec613c9f448fc3df9267464c287869e53544d563.tar.xz manaplus-ec613c9f448fc3df9267464c287869e53544d563.zip |
Add packet SMSG_CLAN_ONLINE_COUNT 0x0988.
Diffstat (limited to 'src/net/eathena/clanrecv.cpp')
-rw-r--r-- | src/net/eathena/clanrecv.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/clanrecv.cpp b/src/net/eathena/clanrecv.cpp index c2751ea85..00f863caf 100644 --- a/src/net/eathena/clanrecv.cpp +++ b/src/net/eathena/clanrecv.cpp @@ -49,4 +49,11 @@ void ClanRecv::processClanInfo(Net::MessageIn &msg) } } +void ClanRecv::processClanOnlineCount(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readInt16("online members count"); + msg.readInt16("total members count"); +} + } // namespace EAthena |