diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-04-08 21:34:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-04-08 21:34:05 +0300 |
commit | 8d39da846fb212f33a6233f30941141407f52425 (patch) | |
tree | d4fba8eebbc7aad58f4acd46e403e4230b9fc9b9 /src/net/eathena/packetsout.inc | |
parent | b874b5400e9f0306dba09c6b44e295e306bcb823 (diff) | |
download | manaverse-8d39da846fb212f33a6233f30941141407f52425.tar.gz manaverse-8d39da846fb212f33a6233f30941141407f52425.tar.bz2 manaverse-8d39da846fb212f33a6233f30941141407f52425.tar.xz manaverse-8d39da846fb212f33a6233f30941141407f52425.zip |
Add packet CMSG_ADMIN_RESET_COOLDOWNS 0x0a88
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 ae03a13e2..7c1a19e3a 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -357,6 +357,7 @@ packet(CMSG_NPC_BARTER_BUY, 0x0000, 0, nullptr); packet(CMSG_CLIENT_VERSION, 0x0000, 0, nullptr); packet(CMSG_PLAYER_STYLE_CLOSE, 0x0000, 0, nullptr); packet(CMSG_MAP_PING2, 0x0000, 0, nullptr); +packet(CMSG_ADMIN_RESET_COOLDOWNS, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1602,4 +1603,10 @@ if (packetVersionMain >= 20190227) packet(CMSG_MAP_PING2, 0x0b1c, 2, clif->pPing); } +// 20160622 +if (packetVersion >= 20160622) +{ + packet(CMSG_ADMIN_RESET_COOLDOWNS, 0x0a88, 2, clif->pResetCooldown); +} + #endif |