diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-19 22:47:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-19 23:39:53 +0300 |
commit | 0f4c817e7b234c9be9dce9ff27e98a1dd0209ad1 (patch) | |
tree | e8b733e6ea9b780c67433ab9e1fd0e9f787e423f /src/net/eathena/packetsout.inc | |
parent | 881a0789997f64c6e3da0525ddca012de72b7201 (diff) | |
download | plus-0f4c817e7b234c9be9dce9ff27e98a1dd0209ad1.tar.gz plus-0f4c817e7b234c9be9dce9ff27e98a1dd0209ad1.tar.bz2 plus-0f4c817e7b234c9be9dce9ff27e98a1dd0209ad1.tar.xz plus-0f4c817e7b234c9be9dce9ff27e98a1dd0209ad1.zip |
Add packet CMSG_SKILL_FEEL_SAVE_OK 0x0254
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index ceae04c94..032f9f3ab 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -287,6 +287,7 @@ packet(CMSG_BUYINGSTORE_OPEN, 0x0000, 0, nullptr); packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0000, 0, nullptr); packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0000, 0, nullptr); packet(CMSG_PARTY_INVITE2, 0x0000, 0, nullptr); +packet(CMSG_SKILL_FEEL_SAVE_OK, 0x0000, 0, nullptr); #else // 20040726 if (packetVersion >= 20040726) @@ -326,6 +327,12 @@ if (packetVersion >= 20050530) packet(CMSG_PK_RANKS, 0x0237, 2, clif->pRankingPk); } +// 20050817 +if (packetVersion >= 20050817) +{ + packet(CMSG_SKILL_FEEL_SAVE_OK, 0x0254, 3, clif->pFeelSaveOk); +} + // 20090603 if (packetVersion >= 20090603) { |