diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-31 18:14:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-31 18:14:44 +0300 |
commit | cdd2dd27b61e36a376dc32947fd9e29f0a492d9b (patch) | |
tree | 88ec4ac6acbc090600c52bddddd978a15e0d0312 /src/net/tmwa/cashshophandler.cpp | |
parent | c0255f61476a509780d316801a6a3d54c2f362ec (diff) | |
download | mv-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.tar.gz mv-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.tar.bz2 mv-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.tar.xz mv-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.zip |
Allow buy multiply items at once from cash shops.
Diffstat (limited to 'src/net/tmwa/cashshophandler.cpp')
-rw-r--r-- | src/net/tmwa/cashshophandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/tmwa/cashshophandler.cpp b/src/net/tmwa/cashshophandler.cpp index d8263033e..8379de3ab 100644 --- a/src/net/tmwa/cashshophandler.cpp +++ b/src/net/tmwa/cashshophandler.cpp @@ -40,7 +40,8 @@ void CashShopHandler::buyItem(const int points A_UNUSED, { } -void CashShopHandler::buyItems(const std::vector<ShopItem*> &items A_UNUSED) +void CashShopHandler::buyItems(const int points A_UNUSED, + const std::vector<ShopItem*> &items A_UNUSED) const { } |