diff --git a/core/src/com/unciv/models/ruleset/validation/RulesetErrorList.kt b/core/src/com/unciv/models/ruleset/validation/RulesetErrorList.kt index 8336249090..259a9fa787 100644 --- a/core/src/com/unciv/models/ruleset/validation/RulesetErrorList.kt +++ b/core/src/com/unciv/models/ruleset/validation/RulesetErrorList.kt @@ -94,7 +94,7 @@ class RulesetErrorList( fun isWarnUser() = getFinalSeverity() >= RulesetErrorSeverity.Warning fun getErrorText(unfiltered: Boolean = false) = - getErrorText { unfiltered || it.errorSeverityToReport != RulesetErrorSeverity.WarningOptionsOnly } + getErrorText { unfiltered || it.errorSeverityToReport > RulesetErrorSeverity.WarningOptionsOnly } fun getErrorText(filter: (RulesetError)->Boolean) = filter(filter) .sortedByDescending { it.errorSeverityToReport }