diff options
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/api/script_news.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/api/script_news.cpp b/src/script/api/script_news.cpp index 9319c8df0..aaa8a6895 100644 --- a/src/script/api/script_news.cpp +++ b/src/script/api/script_news.cpp @@ -21,7 +21,7 @@ EnforcePrecondition(false, text != NULL); EnforcePrecondition(false, !StrEmpty(text->GetEncodedText())); - EnforcePrecondition(false, type >= NT_ARRIVAL_COMPANY && type <= NT_GENERAL); + EnforcePrecondition(false, type == NT_ECONOMY || type == NT_SUBSIDIES || type == NT_GENERAL); EnforcePrecondition(false, company == ScriptCompany::COMPANY_INVALID || ScriptCompany::ResolveCompanyID(company) != ScriptCompany::COMPANY_INVALID); uint8 c = company; |