summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-01-22 15:33:53 +0300
committerAndrei Karas <akaras@inbox.ru>2016-01-22 15:33:53 +0300
commit65c80b4219378cf3e18a6d6beb09ec9913a01d53 (patch)
tree15fedd47422c06a10c2522d00688860d747d30ee /src/net/tmwa
parent6a6ae903a648396a7e684f1443ee5a7d7a6dbaa7 (diff)
downloadManaVerse-65c80b4219378cf3e18a6d6beb09ec9913a01d53.tar.gz
ManaVerse-65c80b4219378cf3e18a6d6beb09ec9913a01d53.tar.bz2
ManaVerse-65c80b4219378cf3e18a6d6beb09ec9913a01d53.tar.xz
ManaVerse-65c80b4219378cf3e18a6d6beb09ec9913a01d53.zip
Add packet CMSG_QUICK_IDENTIFY_ITEM 0x0a35.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/inventoryhandler.cpp4
-rw-r--r--src/net/tmwa/inventoryhandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/inventoryhandler.cpp b/src/net/tmwa/inventoryhandler.cpp
index efe307775..24d76eab7 100644
--- a/src/net/tmwa/inventoryhandler.cpp
+++ b/src/net/tmwa/inventoryhandler.cpp
@@ -169,4 +169,8 @@ void InventoryHandler::selectCart(const BeingId accountId A_UNUSED,
{
}
+void InventoryHandler::identifyItem(const Item *const item A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/inventoryhandler.h b/src/net/tmwa/inventoryhandler.h
index 3b42c5f4c..f818a875b 100644
--- a/src/net/tmwa/inventoryhandler.h
+++ b/src/net/tmwa/inventoryhandler.h
@@ -69,6 +69,8 @@ class InventoryHandler final : public Ea::InventoryHandler
void selectCart(const BeingId accountId,
const int type) const override final;
+ void identifyItem(const Item *const item) const override final;
+
int getProjectileSlot() const override final
{ return 10; }