diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-25 23:15:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-25 23:15:40 +0300 |
commit | b859885c6fcfa1828cd966162d6081638e151280 (patch) | |
tree | 99ad42ce582d3160313f5108d8c7e5d6d118ac25 /src/net/eathena/playerrecv.cpp | |
parent | 3f5414baed89f0ca2d06a9f91d8f9993bb125a78 (diff) | |
download | plus-b859885c6fcfa1828cd966162d6081638e151280.tar.gz plus-b859885c6fcfa1828cd966162d6081638e151280.tar.bz2 plus-b859885c6fcfa1828cd966162d6081638e151280.tar.xz plus-b859885c6fcfa1828cd966162d6081638e151280.zip |
Add packet SMSG_PLAYER_SET_TITLE_ACK 0x0a2f.
Diffstat (limited to 'src/net/eathena/playerrecv.cpp')
-rw-r--r-- | src/net/eathena/playerrecv.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/playerrecv.cpp b/src/net/eathena/playerrecv.cpp index 95811448f..dfaa98b75 100644 --- a/src/net/eathena/playerrecv.cpp +++ b/src/net/eathena/playerrecv.cpp @@ -549,4 +549,11 @@ void PlayerRecv::processSelectStyleAck(Net::MessageIn &msg) msg.readUInt8("flag"); } +void PlayerRecv::processSetTitleAck(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readUInt8("fail flag"); + msg.readInt32("title"); +} + } // namespace EAthena |