summaryrefslogtreecommitdiff
path: root/src/net/eathena/inventoryhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-12 15:59:14 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-12 15:59:14 +0300
commit1769c5e53a8a2765a19906fb94f992bbe579eefe (patch)
tree73c0f2ef0d8d61de40876848bdb3120512e9a599 /src/net/eathena/inventoryhandler.cpp
parent7df47310cba40daf9f29fbebfddef8b978b2770f (diff)
downloadplus-1769c5e53a8a2765a19906fb94f992bbe579eefe.tar.gz
plus-1769c5e53a8a2765a19906fb94f992bbe579eefe.tar.bz2
plus-1769c5e53a8a2765a19906fb94f992bbe579eefe.tar.xz
plus-1769c5e53a8a2765a19906fb94f992bbe579eefe.zip
eathena: add partial support for packet SMSG_PLAYER_STORAGE_PASSWORD_RESULT 0x023c.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r--src/net/eathena/inventoryhandler.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp
index 52f793eb9..c60af4755 100644
--- a/src/net/eathena/inventoryhandler.cpp
+++ b/src/net/eathena/inventoryhandler.cpp
@@ -111,6 +111,7 @@ InventoryHandler::InventoryHandler() :
SMSG_PLAYER_REPAIR_EFFECT,
SMSG_PLAYER_REFINE_LIST,
SMSG_PLAYER_STORAGE_PASSWORD,
+ SMSG_PLAYER_STORAGE_PASSWORD_RESULT,
0
};
handledMessages = _messages;
@@ -263,6 +264,10 @@ void InventoryHandler::handleMessage(Net::MessageIn &msg)
processPlayerStoragePassword(msg);
break;
+ case SMSG_PLAYER_STORAGE_PASSWORD_RESULT:
+ processPlayerStoragePasswordResult(msg);
+ break;
+
default:
break;
}
@@ -1054,4 +1059,12 @@ void InventoryHandler::processPlayerStoragePassword(Net::MessageIn &msg)
msg.readInt16("info");
}
+void InventoryHandler::processPlayerStoragePasswordResult(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt16("result");
+ msg.readInt16("error count");
+}
+
} // namespace EAthena