From 87bbf759fdef66680cacdfd78aa751619a313da2 Mon Sep 17 00:00:00 2001 From: Joachim Stolberg Date: Fri, 3 May 2019 20:51:30 +0200 Subject: [PATCH] v2.03.01, Warehouse nodes inventory handling bugfix --- releasenotes.md | 15 ++++++++++++++- techpack_warehouse/common.lua | 20 ++++++++++++++------ 2 files changed, 28 insertions(+), 7 deletions(-) diff --git a/releasenotes.md b/releasenotes.md index e1feebe..a5aad15 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,6 +1,18 @@ # Release Notes for ModPack TechPack [techpack] -2019-04-23 V2.03 * , + +## V2.03.01 (2019-05-03) + +### Additions + +### Removals + +### Changes + +### Fixes +- Warehouse nodes inventory handling bugfix + + ## V2.03 (2019-04-23) @@ -17,6 +29,7 @@ it will switch to a "defect" dummy node. + ## V2.02.06 (2019-03-23) ### Additions diff --git a/techpack_warehouse/common.lua b/techpack_warehouse/common.lua index 1c217c4..82f3c3a 100644 --- a/techpack_warehouse/common.lua +++ b/techpack_warehouse/common.lua @@ -75,6 +75,18 @@ local function move_to_main(pos, index) end end +local function move_to_player_inv(player_name, pos, main_stack, index) + local player_inv = minetest.get_inventory({type="player", name=player_name}) + local num = main_stack:get_count() + if num > 99 then + num = 99 + end + local leftover = player_inv:add_item("main", ItemStack(main_stack:get_name().." "..num)) + main_stack:set_count(main_stack:get_count() - num + leftover:get_count()) + local node_inv = M(pos):get_inventory() + node_inv:set_stack("main", index, main_stack) +end + function techpack_warehouse.tiles(background_img) return { -- up, down, right, left, back, front @@ -226,12 +238,8 @@ function techpack_warehouse.allow_metadata_inventory_take(pos, listname, index, local number = M(pos):get_string("tubelib_number") if listname == "main" then Cache[number] = nil - local num = main_stack:get_count() - if num > 99 then - return 99 - else - return num - end + minetest.after(0.1, move_to_player_inv, player:get_player_name(), pos, main_stack, index) + return 0 elseif listname == "filter" and main_stack:is_empty() then Cache[number] = nil return 1