Fix "National Wonder is being built elsewhere" not displayed (#4284)

This commit is contained in:
SomeTroglodyte 2021-06-26 22:35:23 +02:00 committed by GitHub
parent d4efc7d679
commit b628c4238d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -245,7 +245,7 @@ class Building : NamedStats(), IConstruction {
return rejectionReason == ""
|| rejectionReason.startsWith("Requires")
|| rejectionReason.startsWith("Consumes")
|| rejectionReason == "Wonder is being built elsewhere"
|| rejectionReason.endsWith("Wonder is being built elsewhere")
}
fun getRejectionReason(construction: CityConstructions): String {