From 54de60b27e4e8dc390c28d2e8ccdd6a6aa4325fc Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Sat, 25 Dec 2021 21:11:01 +0000 Subject: [PATCH] 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,