From e29f5cfd16b4566141ee48fa1c58b606e14b66f7 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 19 Mar 2016 19:57:13 +0300 Subject: Impliment packet SMSG_FAMILY_DIVORCED (hercules). --- src/enums/resources/notifytypes.h | 1 + src/net/eathena/familyrecv.cpp | 7 +++++-- src/resources/notifications.h | 4 ++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/enums/resources/notifytypes.h b/src/enums/resources/notifytypes.h index 66db4544d..e5f465428 100644 --- a/src/enums/resources/notifytypes.h +++ b/src/enums/resources/notifytypes.h @@ -219,6 +219,7 @@ namespace NotifyTypes BEING_REMOVE_WARPED, BEING_REMOVE_TRICK_DEAD, BEING_REMOVE_UNKNOWN, + DIVORCED, TYPE_END }; diff --git a/src/net/eathena/familyrecv.cpp b/src/net/eathena/familyrecv.cpp index 8964d0afe..5a689bb67 100644 --- a/src/net/eathena/familyrecv.cpp +++ b/src/net/eathena/familyrecv.cpp @@ -21,6 +21,9 @@ #include "net/eathena/familyrecv.h" #include "logger.h" +#include "notifymanager.h" + +#include "enums/resources/notifytypes.h" #include "net/messagein.h" @@ -51,8 +54,8 @@ void FamilyRecv::processCallPartner(Net::MessageIn &msg) void FamilyRecv::processDivorced(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; - msg.readString(24, "name"); + const std::string name = msg.readString(24, "name"); + NotifyManager::notify(NotifyTypes::DIVORCED, name.c_str()); } void FamilyRecv::processAskForChildReply(Net::MessageIn &msg) diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 4aa6517e7..abb5efe56 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -791,6 +791,10 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Player %s unknown remove."), NotifyFlags::STRING}, + {"player divorced", + // TRANSLATORS: notification message + N_("You and %s was divorced."), + NotifyFlags::STRING}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H -- cgit v1.2.3-60-g2f50