mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-12-26 03:07:32 +01:00
Fix cow superjump and spawn
This commit is contained in:
parent
be6c9502a7
commit
45acfff97a
@ -56,6 +56,7 @@ mobs:register_mob("mobs_mc:cow", {
|
|||||||
follow = "mcl_farming:wheat_item",
|
follow = "mcl_farming:wheat_item",
|
||||||
view_range = 10,
|
view_range = 10,
|
||||||
fear_height = 2,
|
fear_height = 2,
|
||||||
|
jump_height = 1.25,
|
||||||
on_rightclick = function(self, clicker)
|
on_rightclick = function(self, clicker)
|
||||||
|
|
||||||
-- feed or tame
|
-- feed or tame
|
||||||
@ -89,7 +90,7 @@ mobs:register_mob("mobs_mc:cow", {
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
mobs:register_spawn("mobs_mc:cow", {"group:solid"}, 20, 9, 7000, 1, 31000)
|
mobs:register_spawn("mobs_mc:cow", {"mcl_core:dirt_with_grass"}, 20, 9, 7000, 1, 31000)
|
||||||
|
|
||||||
|
|
||||||
-- compatibility
|
-- compatibility
|
||||||
|
Loading…
Reference in New Issue
Block a user