diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-08-19 20:42:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-08-19 20:42:46 +0300 |
commit | 7191eefef8c7a02c7cf56f598ea76fe791328434 (patch) | |
tree | d45d89df864f4ea4906e764c0a825a7daf63e3e3 /src/gui/inventorywindow.cpp | |
parent | 05d7793aa71a600d76d169ca80744768b277c17b (diff) | |
download | plus-7191eefef8c7a02c7cf56f598ea76fe791328434.tar.gz plus-7191eefef8c7a02c7cf56f598ea76fe791328434.tar.bz2 plus-7191eefef8c7a02c7cf56f598ea76fe791328434.tar.xz plus-7191eefef8c7a02c7cf56f598ea76fe791328434.zip |
Fix adding items to trade.
Now possible add same items from all ways.
Also added protection from adding same stackable items.
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r-- | src/gui/inventorywindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 27fbf7760..3b7b7b273 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -427,7 +427,7 @@ void InventoryWindow::mouseClicked(gcn::MouseEvent &event) else { if (tradeWindow) - tradeWindow->tradeItem(item, item->getQuantity()); + tradeWindow->tradeItem(item, item->getQuantity(), true); } } } |