diff options
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 |