master
D00Med 2017-09-18 18:40:40 +10:00
parent e101f9a6f6
commit 555f83b330
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ minetest.register_abm({
action = function(pos, node)
minetest.add_entity({x=pos.x+math.random(-5,5), y=pos.y+0.5, z=pos.z+math.random(-5,5)}, "mobs_npc:npc")
local position = minetest.pos_to_string(pos, 0)
minetest.chat_send_all("And npc spawned at:"..position)
minetest.chat_send_all("npc spawned at:"..position)
end
})