summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-24 19:28:46 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-24 19:28:46 +0300
commit8764d8fed61e7f0148ede9a6a836b402145578aa (patch)
treed19a68662f801fcabd378f4b966b048778878e5c /src/net/tmwa
parent81020303571b9421b3ef1c8d2ec5f5d36599540d (diff)
downloadplus-8764d8fed61e7f0148ede9a6a836b402145578aa.tar.gz
plus-8764d8fed61e7f0148ede9a6a836b402145578aa.tar.bz2
plus-8764d8fed61e7f0148ede9a6a836b402145578aa.tar.xz
plus-8764d8fed61e7f0148ede9a6a836b402145578aa.zip
eathena: add support for buy from cash shop.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/cashshophandler.cpp8
-rw-r--r--src/net/tmwa/cashshophandler.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/net/tmwa/cashshophandler.cpp b/src/net/tmwa/cashshophandler.cpp
index 7eab823df..991aad5aa 100644
--- a/src/net/tmwa/cashshophandler.cpp
+++ b/src/net/tmwa/cashshophandler.cpp
@@ -42,10 +42,10 @@ void CashShopHandler::handleMessage(Net::MessageIn &msg A_UNUSED)
{
}
-void CashShopHandler::buy(const int points A_UNUSED,
- const int itemId A_UNUSED,
- const unsigned char color A_UNUSED,
- const int amount A_UNUSED) const
+void CashShopHandler::buyItem(const int points A_UNUSED,
+ const int itemId A_UNUSED,
+ const unsigned char color A_UNUSED,
+ const int amount A_UNUSED) const
{
}
diff --git a/src/net/tmwa/cashshophandler.h b/src/net/tmwa/cashshophandler.h
index cbd558d9d..6f79c8480 100644
--- a/src/net/tmwa/cashshophandler.h
+++ b/src/net/tmwa/cashshophandler.h
@@ -38,10 +38,10 @@ class CashShopHandler final : public MessageHandler,
void handleMessage(Net::MessageIn &msg) override final;
- void buy(const int points,
- const int itemId,
- const unsigned char color,
- const int amount) const override final;
+ void buyItem(const int points,
+ const int itemId,
+ const unsigned char color,
+ const int amount) const override final;
};
} // namespace TmwAthena