forked from VoxeLibre/VoxeLibre
Fix possible crash
This commit is contained in:
parent
2e01180fc8
commit
7c15b929fa
|
@ -2058,7 +2058,7 @@ local monster_attack = function(self)
|
||||||
player = obj.object
|
player = obj.object
|
||||||
name = obj.name or ""
|
name = obj.name or ""
|
||||||
end
|
end
|
||||||
if obj.type == self.type and obj.passive == false and obj.state == "attack" and obj.attack then
|
if obj and obj.type == self.type and obj.passive == false and obj.state == "attack" and obj.attack then
|
||||||
table.insert(blacklist_attack, obj.attack)
|
table.insert(blacklist_attack, obj.attack)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue