Merge pull request 'Fix passive mobs despawning' (#1458) from slaesvuo/MineClone2:master into master

Reviewed-on: MineClone2/MineClone2#1458
This commit is contained in:
kay27 2021-04-04 10:18:36 +00:00
commit f54f4ebcf9
1 changed files with 2 additions and 0 deletions

View File

@ -3741,6 +3741,8 @@ function mobs:register_mob(name, def)
local can_despawn
if def.can_despawn ~= nil then
can_despawn = def.can_despawn
elseif def.spawn_class == "passive" then
can_despawn = false
else
can_despawn = true
end