summaryrefslogtreecommitdiff
path: root/src/net/eathena/familyhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/familyhandler.cpp')
-rw-r--r--src/net/eathena/familyhandler.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/familyhandler.cpp b/src/net/eathena/familyhandler.cpp
index 3c5892aa1..44661a0a5 100644
--- a/src/net/eathena/familyhandler.cpp
+++ b/src/net/eathena/familyhandler.cpp
@@ -41,6 +41,7 @@ FamilyHandler::FamilyHandler() :
{
static const uint16_t _messages[] =
{
+ SMSG_ASK_FOR_CHILD,
0
};
handledMessages = _messages;
@@ -51,6 +52,10 @@ void FamilyHandler::handleMessage(Net::MessageIn &msg)
{
switch (msg.getId())
{
+ case SMSG_ASK_FOR_CHILD:
+ processAskForChild(msg);
+ break;
+
default:
break;
}
@@ -65,4 +70,11 @@ void FamilyHandler::askForChild(const Being *const being)
outMsg.writeInt32(being->getId());
}
+void FamilyHandler::processAskForChild(Net::MessageIn &msg)
+{
+ msg.readInt32("account id who ask");
+ msg.readInt32("acoount id for other parent");
+ msg.readString(24, "name who ask");
+}
+
} // namespace EAthena