From f95bf371d22def558dedd008117c6e7b92782316 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 2 Sep 2017 19:00:04 +0200 Subject: [PATCH] Refine hand error logging --- mods/ENTITIES/mcl_item_entity/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_item_entity/init.lua b/mods/ENTITIES/mcl_item_entity/init.lua index cf03b3151..82b2c1960 100644 --- a/mods/ENTITIES/mcl_item_entity/init.lua +++ b/mods/ENTITIES/mcl_item_entity/init.lua @@ -81,7 +81,7 @@ minetest.register_globalstep(function(dtime) -- If this happens, itemstring was "" (=hand). This is always a bug, the hand must never drop as item. else -- Scream this to the error log because this is bad. - minetest.log("error", "Player "..player:get_player_name().." collected a hand at "..minetest.pos_to_string(object:getpos()).."!") + minetest.log("error", "Player "..player:get_player_name().." collected a hand at "..minetest.pos_to_string(object:getpos()).." (age="..object:get_luaentity().age..")!") end