From 068b17892c0edcde310cebbbdc06a00ce56d7928 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 28 Mar 2015 23:45:23 +0300 Subject: eathena: add packet CMSG_BANK_OPEN 0x09b6. --- src/net/eathena/bankhandler.cpp | 6 ++++++ src/net/eathena/bankhandler.h | 2 ++ src/net/eathena/protocol.h | 1 + 3 files changed, 9 insertions(+) (limited to 'src/net/eathena') diff --git a/src/net/eathena/bankhandler.cpp b/src/net/eathena/bankhandler.cpp index 8a6bad3ce..c98b5838c 100644 --- a/src/net/eathena/bankhandler.cpp +++ b/src/net/eathena/bankhandler.cpp @@ -118,4 +118,10 @@ void BankHandler::processBankWithdraw(Net::MessageIn &msg) NotifyManager::notify(NotifyTypes::BANK_WITHDRAW_FAILED); } +void BankHandler::open() const +{ + createOutPacket(CMSG_BANK_OPEN); + outMsg.writeInt32(0, "unused"); +} + } // namespace EAthena diff --git a/src/net/eathena/bankhandler.h b/src/net/eathena/bankhandler.h index d5d9f513d..1fcec8e93 100644 --- a/src/net/eathena/bankhandler.h +++ b/src/net/eathena/bankhandler.h @@ -45,6 +45,8 @@ class BankHandler final : public MessageHandler, void check() const override final; + void open() const override final; + protected: static void processBankStatus(Net::MessageIn &msg); diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index 884cfc382..b8b205f30 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -667,6 +667,7 @@ #define CMSG_BANK_DEPOSIT 0x09a7 #define CMSG_BANK_WITHDRAW 0x09a9 #define CMSG_BANK_CHECK 0x09ab +#define CMSG_BANK_OPEN 0x09b6 #define CMSG_FRIENDS_ADD_PLAYER 0x091a #define CMSG_FRIENDS_REQUEST_ACK 0x0208 -- cgit v1.2.3-70-g09d2