summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-10 23:10:33 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-10 23:10:33 +0300
commit0d2e07905e17d9ac9c53da4ba3bf798d967e7405 (patch)
tree2f34aa66d98f6b204a7d858febc8f211502a60da /src/net/eathena/skillhandler.cpp
parent3e33644761fb296b7efc122c757342ff0da17886 (diff)
downloadManaVerse-0d2e07905e17d9ac9c53da4ba3bf798d967e7405.tar.gz
ManaVerse-0d2e07905e17d9ac9c53da4ba3bf798d967e7405.tar.bz2
ManaVerse-0d2e07905e17d9ac9c53da4ba3bf798d967e7405.tar.xz
ManaVerse-0d2e07905e17d9ac9c53da4ba3bf798d967e7405.zip
eathena: add partial support for packet SMSG_SKILL_MEMO_MESSAGE 0x011e.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r--src/net/eathena/skillhandler.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp
index 7ccc5c736..11164c3be 100644
--- a/src/net/eathena/skillhandler.cpp
+++ b/src/net/eathena/skillhandler.cpp
@@ -62,6 +62,7 @@ SkillHandler::SkillHandler() :
SMSG_PLAYER_DELETE_SKILL,
SMSG_PLAYER_UPDATE_SKILL,
SMSG_SKILL_WARP_POINT,
+ SMSG_SKILL_MEMO_MESSAGE,
0
};
handledMessages = _messages;
@@ -112,6 +113,10 @@ void SkillHandler::handleMessage(Net::MessageIn &msg)
processSkillWarpPoint(msg);
break;
+ case SMSG_SKILL_MEMO_MESSAGE:
+ processSkillMemoMessage(msg);
+ break;
+
default:
break;
}
@@ -387,4 +392,10 @@ void SkillHandler::processSkillWarpPoint(Net::MessageIn &msg)
msg.readString(16, "map name 4");
}
+void SkillHandler::processSkillMemoMessage(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ msg.readUInt8("type");
+}
+
} // namespace EAthena