diff options
Diffstat (limited to 'src/net/tmwa/npchandler.h')
-rw-r--r-- | src/net/tmwa/npchandler.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/net/tmwa/npchandler.h b/src/net/tmwa/npchandler.h index 353145929..d02d837ef 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -63,17 +63,15 @@ class NpcHandler final : public Ea::NpcHandler const ItemColor color, const int amount) const override final; - void buyItems(STD_VECTOR<ShopItem*> &items) const override final - A_CONST; + void buyItems(STD_VECTOR<ShopItem*> &items) const override final; void sellItem(const BeingId beingId, const int itemId, const int amount) const override final; - void sellItems(STD_VECTOR<ShopItem*> &items) const override final - A_CONST; + void sellItems(STD_VECTOR<ShopItem*> &items) const override final; - void completeProgressBar() const override final A_CONST; + void completeProgressBar() const override final; BeingId getNpc(Net::MessageIn &msg, const NpcActionT action) override final; @@ -81,20 +79,20 @@ class NpcHandler final : public Ea::NpcHandler void produceMix(const int nameId, const int materialId1, const int materialId2, - const int materialId3) const override final A_CONST; + const int materialId3) const override final; void cooking(const CookingTypeT type, - const int nameId) const override final A_CONST; + const int nameId) const override final; - void repair(const int index) const override final A_CONST; + void repair(const int index) const override final; - void refine(const int index) const override final A_CONST; + void refine(const int index) const override final; - void identify(const int index) const override final A_CONST; + void identify(const int index) const override final; - void selectArrow(const int nameId) const override final A_CONST; + void selectArrow(const int nameId) const override final; - void selectAutoSpell(const int skillId) const override final A_CONST; + void selectAutoSpell(const int skillId) const override final; }; } // namespace TmwAthena |