Merge pull request 'Stop dead mobs from getting in the way of fighting other mobs' (#1623) from jordan4ibanez/MineClone2:mineclone5 into mineclone5

Reviewed-on: MineClone2/MineClone2#1623
This commit is contained in:
jordan4ibanez 2021-04-23 20:35:52 +00:00
commit d04e694d1a
1 changed files with 5 additions and 0 deletions

View File

@ -104,6 +104,11 @@ mobs.death_logic = function(self, dtime)
end
end
--stop mob from getting in the way of other mobs you're fighting
if self.object:get_properties().pointable then
self.object:set_properties({pointable = false})
end
--the final POOF of a mob despawning
if self.death_animation_timer >= 1.25 then