Merge pull request 'Fixed golems dropping xp' (#58) from chmodsayshello/MineClone5:golemfix into master

Reviewed-on: MineClone5/MineClone5#58
This commit is contained in:
debiankaios 2021-12-26 09:03:38 +00:00
commit ad06c5490c
2 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,8 @@ mobs:register_mob("mobs_mc:iron_golem", {
rotate = 270,
hp_min = 100,
hp_max = 100,
xp_min = 0,
xp_max = 0,
protect = true,
neutral = true,
breath_max = -1,

View File

@ -27,6 +27,8 @@ mobs:register_mob("mobs_mc:snowman", {
passive = true,
hp_min = 4,
hp_max = 4,
xp_min = 0,
xp_max = 0,
pathfinding = 1,
view_range = 10,
fall_damage = 0,