summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r--src/net/eathena/beinghandler.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 02ceb0334..76debad6d 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -1674,6 +1674,15 @@ void BeingHandler::applyPlayerAction(Being *const being, const uint8_t type)
}
}
+void BeingHandler::viewPlayerEquipment(const Being *const being)
+{
+ if (!being)
+ return;
+
+ MessageOut outMsg(CMSG_PLAYER_VIEW_EQUIPMENT);
+ outMsg.writeInt32(being->getId(), "account id");
+}
+
void BeingHandler::processSkillGroundNoDamage(Net::MessageIn &msg) const
{
msg.readInt16("skill id");