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.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 7f3762e58..13fa26032 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -132,6 +132,7 @@ BeingHandler::BeingHandler(const bool enableSync) :
SMSG_GLADIATOR_FEEL_REQUEST,
SMSG_BOSS_MAP_INFO,
SMSG_BEING_FONT,
+ SMSG_BEING_MILLENIUM_SHIELD,
0
};
handledMessages = _messages;
@@ -392,6 +393,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
processBeingFont(msg);
break;
+ case SMSG_BEING_MILLENIUM_SHIELD:
+ processBeingMilleniumShield(msg);
+ break;
+
default:
break;
}
@@ -1861,4 +1866,13 @@ void BeingHandler::processBeingFont(Net::MessageIn &msg)
msg.readInt16("font");
}
+void BeingHandler::processBeingMilleniumShield(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt32("account id");
+ msg.readInt16("shields");
+ msg.readInt16("unused");
+}
+
} // namespace EAthena