Add setting to chance spawn mapblock limit

This commit is contained in:
Jordan Irwin
2021-05-08 14:57:58 -07:00
parent 94c22a5406
commit 0cb069edeb
4 changed files with 30 additions and 20 deletions
+5
View File
@@ -44,3 +44,8 @@ sneeker.spawn_minheight = tonumber(core.settings:get("sneeker.spawn_minheight")
--
-- @setting sneeker.spawn_maxheight
sneeker.spawn_maxheight = tonumber(core.settings:get("sneeker.spawn_maxheight") or 31000)
--- Limits the number of entities that can spawn per mapblock (16x16x16).
--
-- Default: 1
sneeker.spawn_mapblock_limit = tonumber(core.settings:get("sneeker.spawn_mapblock_limit") or 1)