summaryrefslogtreecommitdiff
path: root/src/actions/actions.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-13 12:59:13 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-13 12:59:13 +0300
commitbe1dd6434f993fba9e944cda9e83e0fae32e8c14 (patch)
treef715ca182a8339a775994cbdaa293e24d5e88e63 /src/actions/actions.cpp
parent41eff7ceed25a056ea5d9bec0ae11194132a6d08 (diff)
downloadplus-be1dd6434f993fba9e944cda9e83e0fae32e8c14.tar.gz
plus-be1dd6434f993fba9e944cda9e83e0fae32e8c14.tar.bz2
plus-be1dd6434f993fba9e944cda9e83e0fae32e8c14.tar.xz
plus-be1dd6434f993fba9e944cda9e83e0fae32e8c14.zip
Add chat command for drop item by inventory index.
New chat command: /dropinv INDEX
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r--src/actions/actions.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index 8cd2600b4..da62c6549 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -380,6 +380,22 @@ impHandler(dropItemId)
return true;
}
+impHandler(dropItemInv)
+{
+ const Inventory *const inv = PlayerInfo::getInventory();
+ if (!inv)
+ return false;
+
+ Item *const item = inv->getItem(atoi(event.args.c_str()));
+
+ if (item && !PlayerInfo::isItemProtected(item->getId()))
+ {
+ ItemAmountWindow::showWindow(ItemAmountWindow::ItemDrop,
+ inventoryWindow, item);
+ }
+ return true;
+}
+
impHandler(dropItemIdAll)
{
const Inventory *const inv = PlayerInfo::getInventory();