Set default maximum spawn to 10

This commit is contained in:
AntumDeluge 2017-06-01 15:26:45 -07:00
parent 046e7d5e8c
commit e948a58c3d
2 changed files with 2 additions and 2 deletions

@ -2,7 +2,7 @@
sneeker.debug (Log debug output) bool false sneeker.debug (Log debug output) bool false
# Sets maximum number of spawns that can exist in world. # Sets maximum number of spawns that can exist in world.
sneeker.spawn_cap (Maximum spawns) int 25 sneeker.spawn_cap (Maximum spawns) int 10
# Sets possibility for spawn. # Sets possibility for spawn.
sneeker.spawn_chance (Spawn chance) int 1000 sneeker.spawn_chance (Spawn chance) int 1000

@ -5,7 +5,7 @@ local time_min = 60
local time_hr = time_min * 60 local time_hr = time_min * 60
local time_day = time_hr * 24 local time_day = time_hr * 24
local spawn_cap = minetest.setting_get('sneeker.spawn_cap') or 25 -- Maximum number of spawns active at one time local spawn_cap = minetest.setting_get('sneeker.spawn_cap') or 10 -- Maximum number of spawns active at one time
local spawn_chance = minetest.setting_get('sneeker.spawn_chance') or 1000 -- 1/1000 chance of spawn local spawn_chance = minetest.setting_get('sneeker.spawn_chance') or 1000 -- 1/1000 chance of spawn
local spawn_interval = minetest.setting_get('sneeker.spawn_interval') or time_min * 4 -- Default interval is 4 minutes local spawn_interval = minetest.setting_get('sneeker.spawn_interval') or time_min * 4 -- Default interval is 4 minutes
local spawn_maxlight = minetest.setting_get('sneeker.spawn_maxlight') or 5 -- Maximum light of node for spawn local spawn_maxlight = minetest.setting_get('sneeker.spawn_maxlight') or 5 -- Maximum light of node for spawn