diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-06-26 22:37:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-06-26 22:37:08 +0300 |
commit | 653431655169659331999f4f2d63aa05cfcf3134 (patch) | |
tree | 64be2e53c95adc1935bcce44154134270d007c90 /src/net/eathena/packetsout.inc | |
parent | 888c5621cfe3a646f1f21290d3c5cd027eeba0a9 (diff) | |
download | manaverse-653431655169659331999f4f2d63aa05cfcf3134.tar.gz manaverse-653431655169659331999f4f2d63aa05cfcf3134.tar.bz2 manaverse-653431655169659331999f4f2d63aa05cfcf3134.tar.xz manaverse-653431655169659331999f4f2d63aa05cfcf3134.zip |
Update packet CMSG_SHORTCUTS_ROW_SHIFT
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 5f5aa4847..f96c2563f 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -1299,7 +1299,7 @@ if (packetVersion >= 20140122) // 20140129 if (packetVersion >= 20140129) { - packet(CMSG_SHORTCUTS_ROW_SHIFT, 0x0a01, 3, clif->pHotkeyRowShift); + packet(CMSG_SHORTCUTS_ROW_SHIFT, 0x0a01, 3, clif->pHotkeyRowShift1); } // 20140212 @@ -1629,6 +1629,18 @@ if (packetVersionMain >= 20190227) packet(CMSG_MAP_PING2, 0x0b1c, 2, clif->pPing); } +// 20190508 re +if (packetVersionRe >= 20190508) +{ + packet(CMSG_SHORTCUTS_ROW_SHIFT, 0x0b22, 3, clif->pHotkeyRowShift2); +} + +// 20190522 main +if (packetVersionMain >= 20190522) +{ + packet(CMSG_SHORTCUTS_ROW_SHIFT, 0x0b22, 3, clif->pHotkeyRowShift2); +} + // 20160622 if (packetVersion >= 20160622) { |