Do not throw XP if in creative

This commit is contained in:
ancientmarinerdev 2023-03-16 22:01:36 +00:00 committed by Gitea
parent a3f23d0b35
commit ef633ce617
1 changed files with 3 additions and 1 deletions

View File

@ -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