Increase spawn chance

master
Jordan Irwin 2021-06-01 20:25:41 -07:00
parent cb35cb2782
commit 8a2360d632
2 changed files with 4 additions and 4 deletions

View File

@ -6,10 +6,10 @@ shark.interval = tonumber(core.settings:get("shark.interval")) or 60
--- Chance for each node of spawning shark at each interval.
--
-- The value is inverted. So a chance of value of 9000 equals 1/9000.
-- The value is inverted. So a chance of value of 5000 equals 1/5000.
--
-- @setting shark.chance
shark.chance = tonumber(core.settings:get("shark.chance")) or 9000
shark.chance = tonumber(core.settings:get("shark.chance")) or 5000
--- Minimum node light required for spawning.
--

View File

@ -3,8 +3,8 @@
shark.interval (Shark spawn interval) int 60 0
# Chance for each node of spawning shark at each interval. The value
# is inverted. So a chance of value of 9000 equals 1/9000.
shark.chance (Shark spawn chance) int 9000 0
# is inverted. So a chance of value of 5000 equals 1/5000.
shark.chance (Shark spawn chance) int 5000 0
# Minimum node light required for spawning. "0" is darkest & "14" is
# lightest (daylight).