diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-24 19:28:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-24 19:28:46 +0300 |
commit | 8764d8fed61e7f0148ede9a6a836b402145578aa (patch) | |
tree | d19a68662f801fcabd378f4b966b048778878e5c /src/net/eathena | |
parent | 81020303571b9421b3ef1c8d2ec5f5d36599540d (diff) | |
download | plus-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/eathena')
-rw-r--r-- | src/net/eathena/cashshophandler.cpp | 8 | ||||
-rw-r--r-- | src/net/eathena/cashshophandler.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/net/eathena/cashshophandler.cpp b/src/net/eathena/cashshophandler.cpp index 63cd03a04..b04eec445 100644 --- a/src/net/eathena/cashshophandler.cpp +++ b/src/net/eathena/cashshophandler.cpp @@ -96,10 +96,10 @@ void CashShopHandler::processCashShopBuyAck(Net::MessageIn &msg) msg.readInt16("error"); } -void CashShopHandler::buy(const int points, - const int itemId, - const unsigned char color A_UNUSED, - const int amount) const +void CashShopHandler::buyItem(const int points, + const int itemId, + const unsigned char color A_UNUSED, + const int amount) const { createOutPacket(CMSG_NPC_CASH_SHOP_BUY); outMsg.writeInt16(10 + 4, "len"); diff --git a/src/net/eathena/cashshophandler.h b/src/net/eathena/cashshophandler.h index ae99d8e9e..2c7f0b56e 100644 --- a/src/net/eathena/cashshophandler.h +++ b/src/net/eathena/cashshophandler.h @@ -39,10 +39,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; protected: static void processCashShopOpen(Net::MessageIn &msg); |