Less big-brothering

This commit is contained in:
kilbith 2015-06-09 21:25:26 +02:00
parent 5fa53eb1aa
commit e7ff0cf864

View File

@ -53,18 +53,6 @@ function xdecor.register(name, def)
end
def.can_dig = def.can_dig or default_can_dig
def.on_metadata_inventory_move = def.on_metadata_inventory_move or function(pos, from_list, from_index, to_list, to_index, count, player)
minetest.log("action", "%s moves stuff in %s at %s"):format(
player:get_player_name(), name, minetest.pos_to_string(pos))
end
def.on_metadata_inventory_put = def.on_metadata_inventory_put or function(pos, listname, index, stack, player)
minetest.log("action", "%s moves stuff to %s at %s"):format(
player:get_player_name(), name, minetest.pos_to_string(pos))
end
def.on_metadata_inventory_take = def.on_metadata_inventory_take or function(pos, listname, index, stack, player)
minetest.log("action", "%s takes stuff from %s at %s"):format(
player:get_player_name(), name, minetest.pos_to_string(pos))
end
elseif infotext and not def.on_construct then
def.on_construct = function(pos)
local meta = minetest.get_meta(pos)