Remove old logging.

master
Beha 2017-01-08 20:59:19 -05:00
parent fc14edb398
commit f0bd42d7ec
1 changed files with 1 additions and 6 deletions

View File

@ -6,12 +6,7 @@ local function place_item(tab)
if n and n.name ~= "air" then
pos.y = pos.y + 1
local name = items[math.random(1, #items)]
--Failsafe
if minetest.registered_nodes[name] then
core.set_node(pos, {name = name})
else
kingdoms.log("warning", "Tried to place unregistered node "..name.." in dungeon.")
end
core.set_node(pos, {name = name})
end
end