summaryrefslogtreecommitdiff
path: root/src/actions/actions.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-13 16:50:14 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-13 16:50:14 +0300
commitbb0b9dbea888cd621b6da3465da19f0794073cc1 (patch)
tree195d9c70cdea24b7daa458fa653a9094fe360927 /src/actions/actions.cpp
parentc6204f4b682288b882c2d035381f5bacbe5820c5 (diff)
downloadplus-bb0b9dbea888cd621b6da3465da19f0794073cc1.tar.gz
plus-bb0b9dbea888cd621b6da3465da19f0794073cc1.tar.bz2
plus-bb0b9dbea888cd621b6da3465da19f0794073cc1.tar.xz
plus-bb0b9dbea888cd621b6da3465da19f0794073cc1.zip
Add chat command for add item to trade.
New chat command: /addtrade INDEX AMOUNT. Alias: /tradeadd This command have same patameters like /inttostorage.
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r--src/actions/actions.cpp18
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;
}