Merge pull request 'Don't spawn multiple mobs at the same position' (#2867) from fix_multispawn into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/2867
This commit is contained in:
cora 2022-10-29 10:07:15 +00:00
commit e34e2ba03f
1 changed files with 1 additions and 3 deletions

View File

@ -716,9 +716,7 @@ if mobs_spawn then
-- ignore void and unloaded area
if dimension ~= "void" and dimension ~= "default" then
local y_min, y_max = decypher_limits(pos.y)
for i = 1, math_random(1, 4) do
spawn_a_mob(pos, dimension, y_min, y_max)
end
spawn_a_mob(pos, dimension, y_min, y_max)
end
end
end)