From 54de60b27e4e8dc390c28d2e8ccdd6a6aa4325fc Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Sat, 25 Dec 2021 21:11:01 +0000 Subject: [PATCH 1/2] Iron Golems no longer drop experience orbs In Minecraft, (Iron) 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/Iron_Golem --- mods/ENTITIES/mobs_mc/iron_golem.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/ENTITIES/mobs_mc/iron_golem.lua b/mods/ENTITIES/mobs_mc/iron_golem.lua index 939412abb..d7b2f3613 100644 --- a/mods/ENTITIES/mobs_mc/iron_golem.lua +++ b/mods/ENTITIES/mobs_mc/iron_golem.lua @@ -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, From d40ea5855bda5eb42c8b240d03e5146e4489f1b0 Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Sat, 25 Dec 2021 21:14:20 +0000 Subject: [PATCH 2/2] 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 --- mods/ENTITIES/mobs_mc/snowman.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/ENTITIES/mobs_mc/snowman.lua b/mods/ENTITIES/mobs_mc/snowman.lua index 0726b8da0..e2e17e30e 100644 --- a/mods/ENTITIES/mobs_mc/snowman.lua +++ b/mods/ENTITIES/mobs_mc/snowman.lua @@ -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,