Added signal "empty"

"Empty" signal useful for automated factories
This commit is contained in:
163140 2014-12-08 01:31:06 +00:00
parent 241a7ed75f
commit c2f74cd42a
1 changed files with 4 additions and 0 deletions

View File

@ -127,6 +127,10 @@ minetest.register_node("digilines_inventory:chest", {
minetest.log("action", player:get_player_name().." puts stuff into chest at "..minetest.pos_to_string(pos))
end,
on_metadata_inventory_take = function(pos, listname, index, stack, player)
local inv = minetest.get_meta(pos):get_inventory()
if inv:is_empty(listname) then
sendMessage(pos, "empty", channel)
end
sendMessage(pos,"utake "..maybeString(stack))
minetest.log("action", player:get_player_name().." takes stuff from chest at "..minetest.pos_to_string(pos))
end