summaryrefslogtreecommitdiff
path: root/src/net/eathena/playerhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r--src/net/eathena/playerhandler.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp
index e38aab489..500ece81e 100644
--- a/src/net/eathena/playerhandler.cpp
+++ b/src/net/eathena/playerhandler.cpp
@@ -69,6 +69,7 @@ PlayerHandler::PlayerHandler() :
SMSG_PLAYER_UPGRADE_MESSAGE,
SMSG_PLAYER_FAME_TAEKWON,
SMSG_PLAYER_READ_BOOK,
+ SMSG_PLAYER_EQUIP_TICK_ACK,
0
};
handledMessages = _messages;
@@ -176,6 +177,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg)
processPlayerReadBook(msg);
break;
+ case SMSG_PLAYER_EQUIP_TICK_ACK:
+ processPlayerEquipTickAck(msg);
+ break;
+
default:
break;
}
@@ -585,4 +590,11 @@ void PlayerHandler::processPlayerReadBook(Net::MessageIn &msg)
msg.readInt32("page");
}
+void PlayerHandler::processPlayerEquipTickAck(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ msg.readInt32("unused");
+ msg.readInt32("flag");
+}
+
} // namespace EAthena