forked from VoxeLibre/VoxeLibre
Bring mob spawning variable to the top of the spawning.lua file so it's easier to find
This commit is contained in:
parent
ddb33acf0d
commit
0f4628db09
|
@ -21,6 +21,10 @@ local table_remove = table.remove
|
||||||
|
|
||||||
-- range for mob count
|
-- range for mob count
|
||||||
local aoc_range = 48
|
local aoc_range = 48
|
||||||
|
|
||||||
|
--do mobs spawn?
|
||||||
|
local mobs_spawn = minetest.settings:get_bool("mobs_spawn", true) ~= false
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
|
|
||||||
THIS IS THE BIG LIST OF ALL BIOMES - used for programming/updating mobs
|
THIS IS THE BIG LIST OF ALL BIOMES - used for programming/updating mobs
|
||||||
|
@ -162,9 +166,6 @@ Overworld regular:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local mobs_spawn = minetest.settings:get_bool("mobs_spawn", true) ~= false
|
|
||||||
|
|
||||||
-- count how many mobs are in an area
|
-- count how many mobs are in an area
|
||||||
local count_mobs = function(pos)
|
local count_mobs = function(pos)
|
||||||
local num = 0
|
local num = 0
|
||||||
|
|
Loading…
Reference in New Issue