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:
Dunedan
2025-05-23 07:30:17 +02:00
parent 71c02cf658
commit 2b54697862
+1 -1
View File
@@ -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