forked from Mirrorlandia_minetest/mod-sneeker
Add logging messages
This commit is contained in:
parent
fa0b50491f
commit
3f835fa65d
5
init.lua
5
init.lua
@ -11,6 +11,11 @@ end
|
|||||||
|
|
||||||
sneaker.spawn_cap = minetest.setting_get('sneaker_spawn_cap') or 50
|
sneaker.spawn_cap = minetest.setting_get('sneaker_spawn_cap') or 50
|
||||||
|
|
||||||
|
if minetest.setting_getbool('log_mods') then
|
||||||
|
minetest.log('action', 'Loading mod "' .. sneaker.modname .. '" ...')
|
||||||
|
sneaker.log('Spawn cap: ' .. tostring(sneaker.spawn_cap))
|
||||||
|
end
|
||||||
|
|
||||||
local scripts = {
|
local scripts = {
|
||||||
'tnt_function',
|
'tnt_function',
|
||||||
'spawn',
|
'spawn',
|
||||||
|
@ -8,6 +8,11 @@ local time_day = time_hr * 24
|
|||||||
local spawn_chance = minetest.setting_get('sneaker_spawn_chance') or 18000
|
local spawn_chance = minetest.setting_get('sneaker_spawn_chance') or 18000
|
||||||
local spawn_interval = minetest.setting_get('sneaker_spawn_interval') or time_min * 40 -- Default interval is 40 minutes
|
local spawn_interval = minetest.setting_get('sneaker_spawn_interval') or time_min * 40 -- Default interval is 40 minutes
|
||||||
|
|
||||||
|
if minetest.setting_getbool('log_mods') then
|
||||||
|
sneaker.log('Spawn chance: ' .. tostring(spawn_chance) .. ' (1/' .. tostring(spawn_chance) .. ')')
|
||||||
|
sneaker.log('Spawn interval: ' .. tostring(spawn_interval) .. ' (' .. tostring(spawn_interval/60) .. ' minutes)')
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = {'default:dirt_with_grass','default:stone'},
|
nodenames = {'default:dirt_with_grass','default:stone'},
|
||||||
neighbors = {'air'},
|
neighbors = {'air'},
|
||||||
|
Loading…
Reference in New Issue
Block a user