Fix auto-true statement for tilt fly/swim

This commit is contained in:
jordan4ibanez 2021-04-21 13:01:14 -04:00
parent 71c34823bc
commit 91099c3be9
1 changed files with 2 additions and 2 deletions

View File

@ -349,8 +349,8 @@ function mobs:register_mob(name, def)
eye_height = def.eye_height or 1.5,
defuse_reach = def.defuse_reach or 4,
hostile_cooldown = def.hostile_cooldown or 15,
tilt_fly = def.tilt_fly or true,
tilt_swim = def.tilt_swim or true,
tilt_fly = def.tilt_fly,
tilt_swim = def.tilt_swim,
-- End of MCL2 extensions
on_spawn = def.on_spawn,