diff options
Diffstat (limited to 'src/net/eathena/vendinghandler.h')
-rw-r--r-- | src/net/eathena/vendinghandler.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/eathena/vendinghandler.h b/src/net/eathena/vendinghandler.h index ce5fd5db5..b824a8d8e 100644 --- a/src/net/eathena/vendinghandler.h +++ b/src/net/eathena/vendinghandler.h @@ -32,23 +32,23 @@ class VendingHandler final : public Net::VendingHandler A_DELETE_COPY(VendingHandler) - void close() const final; + void close() const override final; - void open(const Being *const being) const final; + void open(const Being *const being) const override final; void buy(const Being *const being, const int index, - const int amount) const final; + const int amount) const override final; void buy2(const Being *const being, const int vendId, const int index, - const int amount) const final; + const int amount) const override final; void createShop(const std::string &name, const bool flag, const std::vector<ShopItem*> &items) const - final; + override final; }; } // namespace EAthena |