forked from MineClone5/MineClone5
Merge pull request 'Add missing call for on_die function' (#37) from TheHellBox/MineClone5:on_die_fix into master
Reviewed-on: MineClone5/MineClone5#37
This commit is contained in:
commit
b05d7a99a8
|
@ -123,6 +123,9 @@ mobs.death_logic = function(self, dtime)
|
||||||
item_drop(self,false,1)
|
item_drop(self,false,1)
|
||||||
mobs.death_effect(self)
|
mobs.death_effect(self)
|
||||||
mcl_experience.throw_experience(self.object:get_pos(), math_random(self.xp_min, self.xp_max))
|
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()
|
self.object:remove()
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue