mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 00:21:07 +01:00
Fix flying glow squid (extra_mobs)
This commit is contained in:
parent
19586ccfac
commit
f83d1c9fb1
1 changed files with 3 additions and 2 deletions
|
@ -15,6 +15,8 @@ mobs:register_mob("extra_mobs:glow_squid",{
|
||||||
xp_min = 1,
|
xp_min = 1,
|
||||||
xp_max = 3,
|
xp_max = 3,
|
||||||
armor = 100,
|
armor = 100,
|
||||||
|
rotate = 270,
|
||||||
|
tilt_swim = true,
|
||||||
-- FIXME: If the qlow squid is near the floor, it turns black
|
-- FIXME: If the qlow squid is near the floor, it turns black
|
||||||
collisionbox = {-0.4, 0.0, -0.4, 0.4, 0.9, 0.4},
|
collisionbox = {-0.4, 0.0, -0.4, 0.4, 0.9, 0.4},
|
||||||
visual = "mesh",
|
visual = "mesh",
|
||||||
|
@ -45,8 +47,7 @@ mobs:register_mob("extra_mobs:glow_squid",{
|
||||||
},
|
},
|
||||||
visual_size = {x=3, y=3},
|
visual_size = {x=3, y=3},
|
||||||
makes_footstep_sound = false,
|
makes_footstep_sound = false,
|
||||||
fly = true,
|
swim = true,
|
||||||
fly_in = { mobs_mc.items.water_source, mobs_mc.items.river_water_source },
|
|
||||||
breathes_in_water = true,
|
breathes_in_water = true,
|
||||||
jump = false,
|
jump = false,
|
||||||
view_range = 16,
|
view_range = 16,
|
||||||
|
|
Loading…
Reference in a new issue