summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillrecv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/skillrecv.cpp')
-rw-r--r--src/net/eathena/skillrecv.cpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/net/eathena/skillrecv.cpp b/src/net/eathena/skillrecv.cpp
index 8ec41c42f..4aac4907e 100644
--- a/src/net/eathena/skillrecv.cpp
+++ b/src/net/eathena/skillrecv.cpp
@@ -371,8 +371,22 @@ void SkillRecv::processSkillWarpPoint(Net::MessageIn &msg)
void SkillRecv::processSkillMemoMessage(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
- msg.readUInt8("type");
+ const int type = msg.readUInt8("type");
+ switch (type)
+ {
+ case 0:
+ NotifyManager::notify(NotifyTypes::SKILL_MEMO_SAVED);
+ break;
+ case 1:
+ NotifyManager::notify(NotifyTypes::SKILL_MEMO_ERROR_LEVEL);
+ break;
+ case 2:
+ NotifyManager::notify(NotifyTypes::SKILL_MEMO_ERROR_SKILL);
+ break;
+ default:
+ UNIMPLIMENTEDPACKETFIELD(type);
+ break;
+ }
}
void SkillRecv::processSkillProduceMixList(Net::MessageIn &msg)