After accepting a trade you cannot "accept" the same trade again

This commit is contained in:
Yair Morgenstern
2018-07-13 16:13:36 +03:00
parent cfe231ee4e
commit d34a3cd1a2

View File

@ -110,8 +110,10 @@ class TradeScreen(val otherCivilization: CivilizationInfo) : CameraStageBaseScre
}
}
update()
tradeText.setText("Pleasure doing business with you!".tr())
val newTradeScreen = TradeScreen(otherCivilization)
newTradeScreen.tradeText.setText("Pleasure doing business with you!".tr())
UnCivGame.Current.screen = newTradeScreen
}
}