forked from Mirrorlandia_minetest/mod-sneeker
Add debugging output in case of denied spawn
This commit is contained in:
parent
ea60b5fe9b
commit
8485715aba
32
spawn.lua
32
spawn.lua
@ -17,10 +17,13 @@ minetest.register_abm({
|
|||||||
interval = spawn_interval,
|
interval = spawn_interval,
|
||||||
chance = spawn_chance,
|
chance = spawn_chance,
|
||||||
action = function(pos, node, _, active_object_count_wider)
|
action = function(pos, node, _, active_object_count_wider)
|
||||||
|
local spawnit = true
|
||||||
|
|
||||||
if active_object_count_wider > 5 then
|
if active_object_count_wider > 5 then
|
||||||
return
|
spawnit = false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if spawnit then
|
||||||
-- Check light value of node
|
-- Check light value of node
|
||||||
pos.y = pos.y+1
|
pos.y = pos.y+1
|
||||||
local node_light = minetest.get_node_light(pos)
|
local node_light = minetest.get_node_light(pos)
|
||||||
@ -28,30 +31,25 @@ minetest.register_abm({
|
|||||||
-- Debugging spawning
|
-- Debugging spawning
|
||||||
sneeker.log_debug('Node light level at ' .. tostring(pos.x) .. ',' .. tostring(pos.y) .. ': ' .. tostring(node_light))
|
sneeker.log_debug('Node light level at ' .. tostring(pos.x) .. ',' .. tostring(pos.y) .. ': ' .. tostring(node_light))
|
||||||
|
|
||||||
if not node_light then
|
if not node_light or node_light > sneeker.spawn_maxlight or node_light < -1 then
|
||||||
return
|
spawnit = false
|
||||||
end
|
|
||||||
if node_light > sneeker.spawn_maxlight then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
if node_light < -1 then
|
|
||||||
return
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Spawn range
|
-- Spawn range
|
||||||
if pos.y > 31000 then
|
if pos.y > 31000 then
|
||||||
return
|
spawnit = false
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Node must be touching air
|
-- Node must be touching air
|
||||||
if minetest.get_node(pos).name ~= 'air' then
|
if minetest.get_node(pos).name ~= 'air' then
|
||||||
return
|
spawnit = false
|
||||||
end
|
end
|
||||||
pos.y = pos.y+1
|
pos.y = pos.y+1
|
||||||
if minetest.get_node(pos).name ~= 'air' then
|
if minetest.get_node(pos).name ~= 'air' then
|
||||||
return
|
spawnit = false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if spawnit then
|
||||||
-- Get total count of sneekers in world
|
-- Get total count of sneekers in world
|
||||||
local name, count
|
local name, count
|
||||||
for name in pairs(minetest.luaentities) do
|
for name in pairs(minetest.luaentities) do
|
||||||
@ -59,8 +57,16 @@ minetest.register_abm({
|
|||||||
count = count + 1
|
count = count + 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if count >= sneeker.spawn_cap then return end -- Max sneekers already exist
|
if count >= sneeker.spawn_cap then
|
||||||
|
spawnit = false -- Max sneekers already exist
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if spawnit then
|
||||||
sneeker.spawn(pos)
|
sneeker.spawn(pos)
|
||||||
|
else
|
||||||
|
sneeker.log_debug('Spawn denied')
|
||||||
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user