Fix the Military Caste policy (#3692)

This commit is contained in:
absolutebull 2021-03-13 20:16:54 +00:00 committed by GitHub
parent 67bf1e838d
commit b658e04048
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -667,6 +667,7 @@ class CityInfo {
filter == "in capital" && isCapital() -> true
filter == "in all cities with a world wonder" && cityConstructions.getBuiltBuildings().any { it.isWonder } -> true
filter == "in all cities connected to capital" -> isConnectedToCapital()
filter == "in all cities with a garrison" && getCenterTile().militaryUnit != null -> true
else -> false
}
}