From 74035d87b34a0d98992e42fece129739ae57611d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 14 Jul 2018 02:27:43 +0300 Subject: Update packet CMSG_PRIVATE_AIRSHIP_REQUEST 0x0a49. --- src/net/eathena/npchandler.cpp | 6 +++++- src/net/eathena/packetsout.inc | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'src/net/eathena') diff --git a/src/net/eathena/npchandler.cpp b/src/net/eathena/npchandler.cpp index 9a0054b6a..384b38d18 100644 --- a/src/net/eathena/npchandler.cpp +++ b/src/net/eathena/npchandler.cpp @@ -46,6 +46,7 @@ #include "debug.h" extern int packetVersion; +extern int packetVersionMain; extern int packetVersionRe; namespace EAthena @@ -366,8 +367,11 @@ BeingId NpcHandler::getNpc(Net::MessageIn &msg, void NpcHandler::requestAirship(const std::string &mapName, const int itemId) const { - if (packetVersionRe < 20180321) + if (packetVersionRe < 20180321 && + packetVersionMain < 20180620) + { return; + } createOutPacket(CMSG_PRIVATE_AIRSHIP_REQUEST); outMsg.writeString(mapName, 16, "map name"); outMsg.writeInt16(CAST_S16(itemId), "item"); diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index f74a59ac8..6b3e3dd34 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -1385,6 +1385,12 @@ if (packetVersionRe >= 20180321) packet(CMSG_PRIVATE_AIRSHIP_REQUEST, 0x0a49, 20, clif->pPrivateAirshipRequest); } +// main 20180620 +if (packetVersionMain >= 20180620) +{ + packet(CMSG_PRIVATE_AIRSHIP_REQUEST, 0x0a49, 20, clif->pPrivateAirshipRequest); +} + // main 20180404 if (packetVersionMain >= 20180404) { -- cgit v1.2.3-60-g2f50