mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-09 17:23:49 +01:00
Baby animals don't drop XP
This commit is contained in:
parent
b70e58ab05
commit
9d31ddb30d
@ -759,7 +759,7 @@ local check_for_death = function(self, cause, cmi_cause)
|
||||
|
||||
local pos = self.object:get_pos()
|
||||
|
||||
if mod_experience and self.hp_min and self.hp_max then
|
||||
if mod_experience and self.hp_min and self.hp_max and (not self.child and self.type ~= "monster") then
|
||||
mcl_experience.throw_experience(pos, math.ceil( math.random(self.hp_min,self.hp_max+5) / 5) )
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user