diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-10 12:36:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-10 12:38:00 +0300 |
commit | 574efa8ae89f7786239753537eb32c222686f4a1 (patch) | |
tree | dc6f15a6a2a968f459bf541b30b7ef1df71d9f8b /src/net/eathena/beingrecv.cpp | |
parent | a2af952c687ff666208a316d8b7b4e394df19d2f (diff) | |
download | plus-574efa8ae89f7786239753537eb32c222686f4a1.tar.gz plus-574efa8ae89f7786239753537eb32c222686f4a1.tar.bz2 plus-574efa8ae89f7786239753537eb32c222686f4a1.tar.xz plus-574efa8ae89f7786239753537eb32c222686f4a1.zip |
Impliment packets CMSG_SOLVE_CHAR_NAME and SMSG_SOLVE_CHAR_NAME.
Diffstat (limited to 'src/net/eathena/beingrecv.cpp')
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index 2aaf6be7e..31a7bd371 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -1672,4 +1672,12 @@ void BeingRecv::processSkillCancel(Net::MessageIn &msg) msg.readInt32("id?"); } +void BeingRecv::processSolveCharName(Net::MessageIn &msg) +{ + const int id = msg.readInt32("char id"); + const std::string name = msg.readString(24, "name"); + if (actorManager) + actorManager->addChar(id, name); +} + } // namespace EAthena |