forked from MineClone5/MineClone5
Snow Golems no longer drop experience orbs
In Minecraft, (Snow) Golems do not drop any xp! (checked in the Minecarft Wiki and confirmed in my copy of Minecraft (1.18.1)) Now they drop at least 0 and at most 0 experience orbs, so you won't get any https://minecraft.fandom.com/wiki/Snow_Golem
This commit is contained in:
parent
54de60b27e
commit
d40ea5855b
|
@ -27,6 +27,8 @@ mobs:register_mob("mobs_mc:snowman", {
|
||||||
passive = true,
|
passive = true,
|
||||||
hp_min = 4,
|
hp_min = 4,
|
||||||
hp_max = 4,
|
hp_max = 4,
|
||||||
|
xp_min = 0,
|
||||||
|
xp_max = 0,
|
||||||
pathfinding = 1,
|
pathfinding = 1,
|
||||||
view_range = 10,
|
view_range = 10,
|
||||||
fall_damage = 0,
|
fall_damage = 0,
|
||||||
|
|
Loading…
Reference in New Issue