X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Finventory.h;h=a690eb5ae29d825b4635888d23d1a0aa407fb738;hb=0115da1d6348a08388238d8728daaa048a603522;hp=faaa5ef95a450469c138d3e2c1c18ea215d0413e;hpb=ced6d20295a8263757d57c02a07ffcb66688a163;p=minetest.git diff --git a/src/inventory.h b/src/inventory.h index faaa5ef95..a690eb5ae 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -244,7 +244,13 @@ class InventoryList // Move an item to a different list (or a different stack in the same list) // count is the maximum number of items to move (0 for everything) - void moveItem(u32 i, InventoryList *dest, u32 dest_i, u32 count = 0); + // returns number of moved items + u32 moveItem(u32 i, InventoryList *dest, u32 dest_i, + u32 count = 0, bool swap_if_needed = true, bool *did_swap = NULL); + + // like moveItem, but without a fixed destination index + // also with optional rollback recording + void moveItemSomewhere(u32 i, InventoryList *dest, u32 count); private: std::vector m_items;