[5.6][mobs] fix unsafe entity handling (unsure)

i'm not sure about this one, can't find a suitable test for it.
This commit is contained in:
iliekprogrammar 2022-08-07 12:36:53 +08:00
parent 4b31692319
commit bf80074d98
No known key found for this signature in database
GPG Key ID: 8E7B20514DBCFBFA
1 changed files with 2 additions and 1 deletions

View File

@ -3617,8 +3617,9 @@ local mob_step = function(self, dtime)
check_item_pickup(self)
check_aggro(self,dtime)
if not self.fire_resistant then
-- ERROR: [#2523] THIS WILL CAUSE INVALID OBJECTREFS
mcl_burning.tick(self.object, dtime, self)
-- mcl_burning.tick may remove object immediately
if not self.object:get_pos() then return end
end
local pos = self.object:get_pos()