diff options
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index a7c0466d2..c29d90a50 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1438,7 +1438,25 @@ impHandler(invToStorage) { ItemAmountWindow::showWindow(ItemAmountWindow::StoreAdd, inventoryWindow, item); + } + return true; +} + +impHandler(tradeAdd) +{ + Item *item = nullptr; + const int amount = getAmountFromEvent(event, item); + if (!item || PlayerInfo::isItemProtected(item->getId())) return true; + + if (amount) + { + tradeWindow->tradeItem(item, amount, true); + } + else + { + ItemAmountWindow::showWindow(ItemAmountWindow::TradeAdd, + tradeWindow, item); } return true; } |