mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-26 04:21:07 +01:00
Rise mob spawning distance to 24 (Closes #982)
This commit is contained in:
parent
4a3916236c
commit
76bd139f1b
1 changed files with 1 additions and 1 deletions
|
@ -4000,7 +4000,7 @@ function mobs:spawn_specific(name, nodes, neighbors, min_light, max_light,
|
|||
pos.y = pos.y + 1
|
||||
|
||||
-- only spawn away from player
|
||||
local objs = minetest.get_objects_inside_radius(pos, 16)
|
||||
local objs = minetest.get_objects_inside_radius(pos, 24)
|
||||
|
||||
for n = 1, #objs do
|
||||
|
||||
|
|
Loading…
Reference in a new issue