Change 'spawn_chance' default to '2' (1/2 or 50%)

This commit is contained in:
AntumDeluge 2017-05-29 02:57:06 -07:00 committed by Jordan Irwin
parent e96d9da420
commit 1d9c2ed3c5
2 changed files with 2 additions and 2 deletions

@ -5,7 +5,7 @@ sneeker.debug (Log debug output) bool false
sneeker.spawn_cap (Maximum spawns) int 25 sneeker.spawn_cap (Maximum spawns) int 25
# Sets possibility for spawn. # Sets possibility for spawn.
sneeker.spawn_chance (Spawn chance) int 18000 sneeker.spawn_chance (Spawn chance) int 2
# Sets frequency of spawn chance. # Sets frequency of spawn chance.
# Default 1200 is equivalent to 20 minutes (60 * 40). # Default 1200 is equivalent to 20 minutes (60 * 40).

@ -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_chance = tonumber(minetest.settings:get("sneeker.spawn_chance")) or 18000 local spawn_chance = tonumber(minetest.settings:get("sneeker.spawn_chance")) or 2 -- 50% chance of spawn
local spawn_interval = tonumber(minetest.settings:get("sneeker.spawn_interval")) or time_min * 40 -- Default interval is 40 minutes local spawn_interval = tonumber(minetest.settings:get("sneeker.spawn_interval")) or time_min * 40 -- Default interval is 40 minutes
local spawn_chance_percent = tostring(math.floor(1 / spawn_chance * 100)) .. "%" local spawn_chance_percent = tostring(math.floor(1 / spawn_chance * 100)) .. "%"