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 34ac2b436..70e1e25f2 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -334,6 +334,7 @@ packet(CMSG_CLAN_MESSAGE, 0x0000, 0, nullptr); 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); #else // 20040713 if (packetVersion >= 20040713) @@ -1364,6 +1365,12 @@ if (packetVersionRe >= 20180307) packet(CMSG_ATTENDANCE_REWARD, 0x0aef, 2, clif->pAttendanceRewardRequest); } +// re 20180321 +if (packetVersionRe >= 20180321) +{ + packet(CMSG_PRIVATE_AIRSHIP_REQUEST, 0x0a49, 20, clif->pPrivateAirshipRequest); +} + // main 20180404 if (packetVersionMain >= 20180404) { |