Resolved #830 - city-states no longer offer trades

This commit is contained in:
Yair Morgenstern 2019-06-01 22:27:38 +03:00
parent 4b4f5e77b8
commit 8040cb01b9

View file

@ -16,9 +16,11 @@ class NextTurnAutomation{
/** Top-level AI turn tasklist */
fun automateCivMoves(civInfo: CivilizationInfo) {
offerPeaceTreaty(civInfo)
exchangeTechs(civInfo)
exchangeLuxuries(civInfo)
if(civInfo.isMajorCiv()) {
offerPeaceTreaty(civInfo)
exchangeTechs(civInfo)
exchangeLuxuries(civInfo)
}
chooseTechToResearch(civInfo)
adoptPolicy(civInfo)