mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
Fix overwriting previous error state
This fixes a problem where the previous error state got overwritten by the result of validating meshes in checkrefs.py.
This commit is contained in:
@@ -169,7 +169,7 @@ class CheckRefs:
|
||||
from validate_dae import DaeValidator
|
||||
|
||||
dv = DaeValidator(self.vfs_root, self.mods)
|
||||
self.inError = not dv.run()
|
||||
self.inError = self.inError or not dv.run()
|
||||
|
||||
return not self.inError
|
||||
|
||||
|
||||
Reference in New Issue
Block a user