mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Fix auto-true statement for tilt fly/swim
This commit is contained in:
parent
71c34823bc
commit
91099c3be9
1 changed files with 2 additions and 2 deletions
|
@ -349,8 +349,8 @@ function mobs:register_mob(name, def)
|
||||||
eye_height = def.eye_height or 1.5,
|
eye_height = def.eye_height or 1.5,
|
||||||
defuse_reach = def.defuse_reach or 4,
|
defuse_reach = def.defuse_reach or 4,
|
||||||
hostile_cooldown = def.hostile_cooldown or 15,
|
hostile_cooldown = def.hostile_cooldown or 15,
|
||||||
tilt_fly = def.tilt_fly or true,
|
tilt_fly = def.tilt_fly,
|
||||||
tilt_swim = def.tilt_swim or true,
|
tilt_swim = def.tilt_swim,
|
||||||
-- End of MCL2 extensions
|
-- End of MCL2 extensions
|
||||||
|
|
||||||
on_spawn = def.on_spawn,
|
on_spawn = def.on_spawn,
|
||||||
|
|
Loading…
Reference in a new issue