diff options
Diffstat (limited to 'src/net/eathena/bankrecv.cpp')
-rw-r--r-- | src/net/eathena/bankrecv.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/eathena/bankrecv.cpp b/src/net/eathena/bankrecv.cpp index 859978077..1f6abc85a 100644 --- a/src/net/eathena/bankrecv.cpp +++ b/src/net/eathena/bankrecv.cpp @@ -38,8 +38,10 @@ namespace EAthena void BankRecv::processBankStatus(Net::MessageIn &msg) { const int money = CAST_S32(msg.readInt64("money")); - msg.readInt16("reason"); + const int reason = msg.readInt16("reason"); BankListener::distributeEvent(money); + if (reason != 0) + NotifyManager::notify(NotifyTypes::BANK_CHECK_FAILED); } void BankRecv::processBankDeposit(Net::MessageIn &msg) |