]> git.lizzy.rs Git - minetest.git/blobdiff - src/inventory.h
Mapgen: Don't spread light of nodes outside the desired area
[minetest.git] / src / inventory.h
index faaa5ef95a450469c138d3e2c1c18ea215d0413e..a690eb5ae29d825b4635888d23d1a0aa407fb738 100644 (file)
@@ -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<ItemStack> m_items;