diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-22 14:14:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-22 14:14:26 +0300 |
commit | c860fb83abb48b98f98e20fc19ac1591d03b61d1 (patch) | |
tree | 6da6ce13302fe00f061ce54a1eabcb694ee37ecd /src/gui/windows/buydialog.cpp | |
parent | b3f39e67e4bf45f526a6a1867e72e2b35092528b (diff) | |
download | plus-c860fb83abb48b98f98e20fc19ac1591d03b61d1.tar.gz plus-c860fb83abb48b98f98e20fc19ac1591d03b61d1.tar.bz2 plus-c860fb83abb48b98f98e20fc19ac1591d03b61d1.tar.xz plus-c860fb83abb48b98f98e20fc19ac1591d03b61d1.zip |
Add support for show and buy from market.
Diffstat (limited to 'src/gui/windows/buydialog.cpp')
-rw-r--r-- | src/gui/windows/buydialog.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/gui/windows/buydialog.cpp b/src/gui/windows/buydialog.cpp index dbc6dd59b..61b5d7233 100644 --- a/src/gui/windows/buydialog.cpp +++ b/src/gui/windows/buydialog.cpp @@ -45,6 +45,7 @@ #include "net/adminhandler.h" #include "net/buysellhandler.h" +#include "net/markethandler.h" #include "net/npchandler.h" #include "resources/iteminfo.h" @@ -439,8 +440,19 @@ void BuyDialog::action(const ActionEvent &event) else if (mNpcId != -1) { const ShopItem *const item = mShopItems->at(selectedItem); - npcHandler->buyItem(mNpcId, item->getId(), - item->getColor(), mAmountItems); + if (mNpcId != -3) + { + npcHandler->buyItem(mNpcId, + item->getId(), + item->getColor(), + mAmountItems); + } + else + { + marketHandler->buyItem(item->getId(), + item->getColor(), + mAmountItems); + } // Update money and adjust the max number of items // that can be bought |