mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 09:31:07 +01:00
fix syntax crash
This commit is contained in:
parent
b27c81cea4
commit
27ac333878
1 changed files with 1 additions and 1 deletions
|
@ -2049,7 +2049,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.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 a new issue