Changed date notations to BC and AD, as per original Civ
This commit is contained in:
parent
49603f8852
commit
edada1182b
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class WorldScreenTopBar(val screen: WorldScreen) : Table() {
|
|||
else -> 2020+(turns-440)/2
|
||||
}
|
||||
|
||||
turnsLabel.setText("Turn".tr()+" " + civInfo.gameInfo.turns + " | "+ abs(year)+(if (year<0) " BCE" else " CE"))
|
||||
turnsLabel.setText("Turn".tr()+" " + civInfo.gameInfo.turns + " | "+ abs(year)+(if (year<0) " BE" else " AD"))
|
||||
|
||||
val nextTurnStats = civInfo.getStatsForNextTurn()
|
||||
val goldPerTurn = "(" + (if (nextTurnStats.gold > 0) "+" else "") + Math.round(nextTurnStats.gold) + ")"
|
||||
|
|
Loading…
Reference in a new issue