summaryrefslogtreecommitdiff
path: root/src/actions/actions.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-12 23:14:56 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-12 23:14:56 +0300
commit4825eb0b1c940f17925eb70fc0155abd4443d4f2 (patch)
treeb2e1591fcf1a946c18a6a5bf72026bee4f582ca3 /src/actions/actions.cpp
parent23a89c57cbd36922fbcb92affa9546955591e9db (diff)
downloadplus-4825eb0b1c940f17925eb70fc0155abd4443d4f2.tar.gz
plus-4825eb0b1c940f17925eb70fc0155abd4443d4f2.tar.bz2
plus-4825eb0b1c940f17925eb70fc0155abd4443d4f2.tar.xz
plus-4825eb0b1c940f17925eb70fc0155abd4443d4f2.zip
Add chat command for drop all items in stack with given id.
New chat command: /dropitemall ID
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r--src/actions/actions.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index 605a3ff06..8cd2600b4 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -380,6 +380,20 @@ impHandler(dropItemId)
return true;
}
+impHandler(dropItemIdAll)
+{
+ const Inventory *const inv = PlayerInfo::getInventory();
+ if (!inv)
+ return false;
+
+ // +++ ignoring item color for now
+ Item *const item = inv->findItem(atoi(event.args.c_str()), 1);
+
+ if (item && !PlayerInfo::isItemProtected(item->getId()))
+ PlayerInfo::dropItem(item, item->getQuantity(), true);
+ return true;
+}
+
impHandler(heal)
{
if (actorManager && localPlayer)