Fix mobs colliding with other mobs/players

This commit is contained in:
jordan4ibanez 2021-04-07 23:16:03 -04:00
parent 6bd249547a
commit 6ec66ef6f6
1 changed files with 1 additions and 1 deletions

View File

@ -4352,7 +4352,7 @@ local timer = 15 --0
minetest.register_globalstep(function(dtime)
timer = timer + dtime
if timer >= 15 then
timer = 15--0
timer = 0--15--0
for _,player in ipairs(minetest.get_connected_players()) do
for i = 1,math.random(5) do
local player_pos = player:get_pos()