Fix mobs able to swim in plants

This commit is contained in:
Wuzzy 2020-01-30 16:52:07 +01:00
parent 834c8cbc3a
commit 61e148ac2e
7 changed files with 18 additions and 26 deletions

View file

@ -44,7 +44,6 @@ mobs:register_mob("mobs_mc:bat", {
view_range = 16,
fly = true,
fly_in = "air",
})

View file

@ -34,7 +34,6 @@ mobs:register_mob("mobs_mc:enderdragon", {
jump_height = 14,
stepheight = 1.2,
fly = true,
fly_in = {"air"},
dogshoot_switch = 1,
dogshoot_count_max =5,
dogshoot_count2_max = 5,

View file

@ -66,7 +66,6 @@ mobs:register_mob("mobs_mc:ghast", {
jump_height = 4,
floats=1,
fly = true,
fly_in = {"air"},
})

View file

@ -52,7 +52,6 @@ mobs:register_mob("mobs_mc:parrot", {
floats = 1,
physical = true,
fly = true,
fly_in = {"air"},
fear_height = 4,
view_range = 16,
follow = mobs_mc.follow.parrot,

View file

@ -85,7 +85,6 @@ mobs:register_mob("mobs_mc:vex", {
end
end,
fly = true,
fly_in = {"air"},
})