diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-01-25 20:51:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-25 20:51:01 +0300 |
commit | fa79a8921ab18021e58c22fddd735008c15cea10 (patch) | |
tree | c755fc38affeaf5ab939fed8f7f8b4563e20c6e8 /src/net/eathena | |
parent | 9f1d941ea4195ec4c4942fac47fde24c19265d5b (diff) | |
download | ManaVerse-fa79a8921ab18021e58c22fddd735008c15cea10.tar.gz ManaVerse-fa79a8921ab18021e58c22fddd735008c15cea10.tar.bz2 ManaVerse-fa79a8921ab18021e58c22fddd735008c15cea10.tar.xz ManaVerse-fa79a8921ab18021e58c22fddd735008c15cea10.zip |
Update version check for packet CMSG_NPC_SELECT_ARROW
Diffstat (limited to 'src/net/eathena')
-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 a61f8b48b..75baa0dc4 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -1528,6 +1528,13 @@ if (packetVersionZero >= 20181114) packet(CMSG_INVENTORY_EXPAND, 0x0b14, 2, clif->pInventoryExpansion); packet(CMSG_INVENTORY_EXPAND_CONFIRM, 0x0b16, 2, clif->pInventoryExpansionConfirm); packet(CMSG_INVENTORY_EXPAND_REJECT, 0x0b19, 2, clif->pInventoryExpansionReject); + packet(CMSG_NPC_SELECT_ARROW, 0x01ae, 6, clif->pSelectArrow); +} + +// 20181121 +if (packetVersionMain >= 20181121) +{ + packet(CMSG_NPC_SELECT_ARROW, 0x01ae, 6, clif->pSelectArrow); } #endif |