diff --git a/core/src/com/unciv/logic/civilization/GoldenAgeManager.kt b/core/src/com/unciv/logic/civilization/GoldenAgeManager.kt index eda21bbe78..063b143306 100644 --- a/core/src/com/unciv/logic/civilization/GoldenAgeManager.kt +++ b/core/src/com/unciv/logic/civilization/GoldenAgeManager.kt @@ -28,6 +28,7 @@ class GoldenAgeManager{ var turnsToGoldenAge = 10.0 if (civInfo.containsBuildingUnique("Golden Age length increases +50%")) turnsToGoldenAge *= 1.5 if (civInfo.policies.isAdopted("Freedom Complete")) turnsToGoldenAge *= 1.5 + turnsToGoldenAge *= civInfo.gameInfo.gameParameters.gameSpeed.getModifier() turnsLeftForCurrentGoldenAge += turnsToGoldenAge.toInt() civInfo.addNotification("You have entered a golden age!", null, Color.GOLD) } diff --git a/core/src/com/unciv/ui/trade/DiplomacyScreen.kt b/core/src/com/unciv/ui/trade/DiplomacyScreen.kt index abeb4e0f21..3651071af2 100644 --- a/core/src/com/unciv/ui/trade/DiplomacyScreen.kt +++ b/core/src/com/unciv/ui/trade/DiplomacyScreen.kt @@ -221,7 +221,7 @@ class DiplomacyScreen:CameraStageBaseScreen() { val demandsButton = TextButton("Demands".tr(),skin) demandsButton.onClick { - rightSideTable.clear(); + rightSideTable.clear() rightSideTable.add(getDemandsTable(currentPlayerCiv,otherCiv)) } diplomacyTable.add(demandsButton).row()