diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-01-09 04:41:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-01-09 04:41:50 +0300 |
commit | 62471b26135021d75f1b9255ab613746ae2ad67a (patch) | |
tree | 6b5e8b29c6c9432ba03ce2fe06a5df4dc19e2ca3 /src/net/tmwa/npchandler.h | |
parent | e6704b8b023f5507be7b1bc5ba0b564e30e6e30f (diff) | |
download | manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.tar.gz manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.tar.bz2 manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.tar.xz manaverse-62471b26135021d75f1b9255ab613746ae2ad67a.zip |
Remove useless A_CONST attributes.
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 |