diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-06-14 23:28:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-06-14 23:28:55 +0300 |
commit | f349460cedb54d3490e016a48036ced26cd8e998 (patch) | |
tree | e93d9bae4296dc021c93a620da9d8dc652fdd64f /src/net/eathena/packetsout.inc | |
parent | 7b7771f90573b462b16ccb467500f4d7d533b6a9 (diff) | |
download | manaverse-f349460cedb54d3490e016a48036ced26cd8e998.tar.gz manaverse-f349460cedb54d3490e016a48036ced26cd8e998.tar.bz2 manaverse-f349460cedb54d3490e016a48036ced26cd8e998.tar.xz manaverse-f349460cedb54d3490e016a48036ced26cd8e998.zip |
Add packet CMSG_PLAYER_SELECT_STYLE 0x0a46.
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 70e1e25f2..b622b0340 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -335,6 +335,7 @@ packet(CMSG_WINDOW_OPEN_REQUEST2, 0x0000, 0, nullptr); packet(CMSG_ATTENDANCE_REWARD, 0x0000, 0, nullptr); packet(CMSG_MAP_BLOCK_PLAY_CANCEL, 0x0000, 0, nullptr); packet(CMSG_PRIVATE_AIRSHIP_REQUEST, 0x0000, 0, nullptr); +packet(CMSG_PLAYER_SELECT_STYLE, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1328,6 +1329,12 @@ if (packetVersion >= 20151001) packet(CMSG_CHAR_CREATE, 0x0a39, 36, chr->parse_char_create_new_char); } +// 20151104 +if (packetVersion >= 20151104) +{ + packet(CMSG_PLAYER_SELECT_STYLE, 0x0a46, 14, clif->pReqStyleChange); +} + // 20160323 if (packetVersion >= 20160323) { |