diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-03-08 06:07:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-03-08 06:07:15 +0300 |
commit | fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d (patch) | |
tree | f7f8af4849bc214a27ea8205410568b76ce5ec30 /src/net/eathena/charserverhandler.cpp | |
parent | 6b3b81988ea37207eeeb2994761e307c6b6fb340 (diff) | |
download | manaverse-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.tar.gz manaverse-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.tar.bz2 manaverse-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.tar.xz manaverse-fc1ca42ed5a1b2d83a1dc8f94709a057b8e28e9d.zip |
Add support for change pin code by server request.
Diffstat (limited to 'src/net/eathena/charserverhandler.cpp')
-rw-r--r-- | src/net/eathena/charserverhandler.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp index 71bf6aeee..630dca675 100644 --- a/src/net/eathena/charserverhandler.cpp +++ b/src/net/eathena/charserverhandler.cpp @@ -214,6 +214,16 @@ void CharServerHandler::sendCheckPincode(const BeingId accountId, outMsg.writeString(pin, 4, "encrypted pin"); } +void CharServerHandler::changePincode(const BeingId accountId, + const std::string &oldPin, + const std::string &newPin) const +{ + createOutPacket(CMSG_CHAR_PIN_CHANGE); + outMsg.writeBeingId(accountId, "account id"); + outMsg.writeString(oldPin, 4, "old encrypted pin"); + outMsg.writeString(newPin, 4, "new encrypted pin"); +} + void CharServerHandler::renameCharacter(const BeingId id, const std::string &newName) const { |