mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Cows and villagers can go into attack state and become non-functional
This commit is contained in:
parent
ccf7b54481
commit
b9d58c2f79
2 changed files with 3 additions and 1 deletions
|
@ -6,6 +6,7 @@ local cow_def = {
|
|||
description = S("Cow"),
|
||||
type = "animal",
|
||||
spawn_class = "passive",
|
||||
passive = true,
|
||||
hp_min = 10,
|
||||
hp_max = 10,
|
||||
xp_min = 1,
|
||||
|
|
|
@ -1576,6 +1576,7 @@ mcl_mobs:register_mob("mobs_mc:villager", {
|
|||
description = S("Villager"),
|
||||
type = "npc",
|
||||
spawn_class = "passive",
|
||||
passive = true,
|
||||
hp_min = 20,
|
||||
hp_max = 20,
|
||||
head_swivel = "head.control",
|
||||
|
|
Loading…
Reference in a new issue