mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-02-17 21:23:44 +01:00
fix syntax crash
This commit is contained in:
@ -2049,7 +2049,7 @@ local monster_attack = function(self)
|
||||
player = obj.object
|
||||
name = obj.name or ""
|
||||
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)
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user