forked from MineClone5/MineClone5
Merge pull request 'Fixed golems dropping xp' (#58) from chmodsayshello/MineClone5:golemfix into master
Reviewed-on: MineClone5/MineClone5#58
This commit is contained in:
commit
ad06c5490c
|
@ -19,6 +19,8 @@ mobs:register_mob("mobs_mc:iron_golem", {
|
||||||
rotate = 270,
|
rotate = 270,
|
||||||
hp_min = 100,
|
hp_min = 100,
|
||||||
hp_max = 100,
|
hp_max = 100,
|
||||||
|
xp_min = 0,
|
||||||
|
xp_max = 0,
|
||||||
protect = true,
|
protect = true,
|
||||||
neutral = true,
|
neutral = true,
|
||||||
breath_max = -1,
|
breath_max = -1,
|
||||||
|
|
|
@ -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