diff options
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r-- | src/net/eathena/inventoryhandler.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index c42e31903..52f793eb9 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -110,6 +110,7 @@ InventoryHandler::InventoryHandler() : SMSG_PLAYER_REPAIR_LIST, SMSG_PLAYER_REPAIR_EFFECT, SMSG_PLAYER_REFINE_LIST, + SMSG_PLAYER_STORAGE_PASSWORD, 0 }; handledMessages = _messages; @@ -258,6 +259,10 @@ void InventoryHandler::handleMessage(Net::MessageIn &msg) processPlayerRefineList(msg); break; + case SMSG_PLAYER_STORAGE_PASSWORD: + processPlayerStoragePassword(msg); + break; + default: break; } @@ -1042,4 +1047,11 @@ void InventoryHandler::processPlayerRefineList(Net::MessageIn &msg) menu = MenuType::WeaponeRefine; } +void InventoryHandler::processPlayerStoragePassword(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + + msg.readInt16("info"); +} + } // namespace EAthena |