diff --git a/mods/ENTITIES/mcl_mobs/physics.lua b/mods/ENTITIES/mcl_mobs/physics.lua index c6599a28b..956eb992c 100644 --- a/mods/ENTITIES/mcl_mobs/physics.lua +++ b/mods/ENTITIES/mcl_mobs/physics.lua @@ -493,7 +493,9 @@ function mob_class:check_for_death(cause, cmi_cause) if not mcl_sculk.handle_death(pos, xp_amount) then --minetest.log("Xp not thrown") - mcl_experience.throw_xp(pos, xp_amount) + if minetest.is_creative_enabled("") ~= true then + mcl_experience.throw_xp(pos, xp_amount) + end else --minetest.log("xp thrown") end