diff options
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 0b501bdbf..135fec27f 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1421,4 +1421,17 @@ impHandler(invToStorageHalf) return true; } +impHandler(invToStorageAll1) +{ + Item *const item = getItemByInvIndex(event); + if (!item) + return true; + + inventoryHandler->moveItem2(Inventory::INVENTORY, + item->getInvIndex(), + item->getQuantity() - 1, + Inventory::STORAGE); + return true; +} + } // namespace Actions |