mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-04-04 21:31:28 +02:00
Add missing call for on_die function
This commit is contained in:
committed by
iliekprogrammar
parent
1518eb81cb
commit
db696d0e2b
@ -123,6 +123,9 @@ mobs.death_logic = function(self, dtime)
|
||||
item_drop(self,false,1)
|
||||
mobs.death_effect(self)
|
||||
mcl_experience.throw_experience(self.object:get_pos(), math_random(self.xp_min, self.xp_max))
|
||||
if self.on_die then
|
||||
self.on_die(self, self.object:get_pos())
|
||||
end
|
||||
self.object:remove()
|
||||
return
|
||||
end
|
||||
|
Reference in New Issue
Block a user