summaryrefslogtreecommitdiff
path: root/src/net/eathena/familyrecv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/familyrecv.cpp')
-rw-r--r--src/net/eathena/familyrecv.cpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/net/eathena/familyrecv.cpp b/src/net/eathena/familyrecv.cpp
index 7b0e9fa01..07b1f343a 100644
--- a/src/net/eathena/familyrecv.cpp
+++ b/src/net/eathena/familyrecv.cpp
@@ -105,8 +105,22 @@ void FamilyRecv::processDivorced(Net::MessageIn &msg)
void FamilyRecv::processAskForChildReply(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
- msg.readInt32("type");
+ const int type = msg.readInt32("type");
+ switch (type)
+ {
+ case 0:
+ NotifyManager::notify(NotifyTypes::ADOPT_CHILD_ERROR_HAVE_BABY);
+ break;
+ case 1:
+ NotifyManager::notify(NotifyTypes::ADOPT_CHILD_ERROR_LEVEL);
+ break;
+ case 2:
+ NotifyManager::notify(NotifyTypes::ADOPT_CHILD_ERROR_BABY_MARRIED);
+ break;
+ default:
+ UNIMPLIMENTEDPACKETFIELD(type);
+ break;
+ }
}
} // namespace EAthena