diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-18 20:46:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-18 20:46:07 +0300 |
commit | cee847abc0873504b54022c3af8cdf316e2c06c5 (patch) | |
tree | 9c9fbbd214db848b0d3b64781a069327575a7053 /src/net/tmwa | |
parent | e40ff3205395015708b4801a984c25f239089f50 (diff) | |
download | mv-cee847abc0873504b54022c3af8cdf316e2c06c5.tar.gz mv-cee847abc0873504b54022c3af8cdf316e2c06c5.tar.bz2 mv-cee847abc0873504b54022c3af8cdf316e2c06c5.tar.xz mv-cee847abc0873504b54022c3af8cdf316e2c06c5.zip |
Add packet CMSG_PRIVATE_AIRSHIP_REQUEST 0x0a49.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 5 | ||||
-rw-r--r-- | src/net/tmwa/npchandler.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index c52333795..c577bc6a1 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -243,4 +243,9 @@ BeingId NpcHandler::getNpc(Net::MessageIn &msg, return npcId; } +void NpcHandler::requestAirship(const std::string &mapName A_UNUSED, + const int itemId A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/npchandler.h b/src/net/tmwa/npchandler.h index d02d837ef..3cfd24aea 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -93,6 +93,9 @@ class NpcHandler final : public Ea::NpcHandler void selectArrow(const int nameId) const override final; void selectAutoSpell(const int skillId) const override final; + + void requestAirship(const std::string &mapName, + const int itemId) const override final; }; } // namespace TmwAthena |