diff --git a/Source/Modules/Skyrim/Linter.py b/Source/Modules/Skyrim/Linter.py index e1c016f..def69b5 100644 --- a/Source/Modules/Skyrim/Linter.py +++ b/Source/Modules/Skyrim/Linter.py @@ -828,7 +828,7 @@ def AssignmentValidator(self, node): self.AssignmentValidator(node.data.leftOperand) self.AssignmentValidator(node.data.rightOperand) else: - self.Abort("The left-hand side expression contains operators other than the dot operator.") + self.Abort("The left-hand side expression contains operators other than the dot and cast operators.") elif node.type == self.NODE_UNARYOPERATOR: self.AssignmentValidator(node.data.operand) else: