Skip to content

Commit

Permalink
Add item name to chest log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy authored and paramat committed Feb 24, 2016
1 parent 3a55e19 commit 42cc6d2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions mods/default/nodes.lua
Expand Up @@ -1445,11 +1445,13 @@ minetest.register_node("default:chest", {
end,
on_metadata_inventory_put = function(pos, listname, index, stack, player)
minetest.log("action", player:get_player_name() ..
" moves stuff to chest at " .. minetest.pos_to_string(pos))
" moves " .. stack:get_name() ..
" to chest at " .. minetest.pos_to_string(pos))
end,
on_metadata_inventory_take = function(pos, listname, index, stack, player)
minetest.log("action", player:get_player_name() ..
" takes stuff from chest at " .. minetest.pos_to_string(pos))
" takes " .. stack:get_name() ..
" from chest at " .. minetest.pos_to_string(pos))
end,
})
Expand Down Expand Up @@ -1505,11 +1507,13 @@ minetest.register_node("default:chest_locked", {
end,
on_metadata_inventory_put = function(pos, listname, index, stack, player)
minetest.log("action", player:get_player_name() ..
" moves stuff to locked chest at " .. minetest.pos_to_string(pos))
" moves " .. stack:get_name() ..
" to locked chest at " .. minetest.pos_to_string(pos))
end,
on_metadata_inventory_take = function(pos, listname, index, stack, player)
minetest.log("action", player:get_player_name() ..
" takes stuff from locked chest at " .. minetest.pos_to_string(pos))
" takes " .. stack:get_name() ..
" from locked chest at " .. minetest.pos_to_string(pos))
end,
on_rightclick = function(pos, node, clicker)
local meta = minetest.get_meta(pos)
Expand Down

0 comments on commit 42cc6d2

Please sign in to comment.