diff --git a/core/src/com/unciv/models/metadata/GameSettings.kt b/core/src/com/unciv/models/metadata/GameSettings.kt index 154385dc60..5807127d3d 100644 --- a/core/src/com/unciv/models/metadata/GameSettings.kt +++ b/core/src/com/unciv/models/metadata/GameSettings.kt @@ -47,7 +47,6 @@ class GameSettings { var visualMods = HashSet() var showExperimentalWorldWrap = false // We're keeping this as a config due to ANR problems on Android phones for people who don't know what they're doing :/ - var showExperimentalReligion = false var lastOverviewPage: String = "Cities" diff --git a/core/src/com/unciv/ui/newgamescreen/GameOptionsTable.kt b/core/src/com/unciv/ui/newgamescreen/GameOptionsTable.kt index 549f6472eb..caf60f4b1a 100644 --- a/core/src/com/unciv/ui/newgamescreen/GameOptionsTable.kt +++ b/core/src/com/unciv/ui/newgamescreen/GameOptionsTable.kt @@ -48,8 +48,7 @@ class GameOptionsTable( checkboxTable.addOneCityChallengeCheckbox() checkboxTable.addNuclearWeaponsCheckbox() checkboxTable.addIsOnlineMultiplayerCheckbox() - if (UncivGame.Current.settings.showExperimentalReligion) - checkboxTable.addReligionCheckbox() + checkboxTable.addReligionCheckbox() add(checkboxTable).center().row() if (!withoutMods) diff --git a/core/src/com/unciv/ui/worldscreen/mainmenu/OptionsPopup.kt b/core/src/com/unciv/ui/worldscreen/mainmenu/OptionsPopup.kt index 41cf7a6fb9..298006dca7 100644 --- a/core/src/com/unciv/ui/worldscreen/mainmenu/OptionsPopup.kt +++ b/core/src/com/unciv/ui/worldscreen/mainmenu/OptionsPopup.kt @@ -241,10 +241,6 @@ class OptionsPopup(val previousScreen: CameraStageBaseScreen) : Popup(previousSc settings.showExperimentalWorldWrap) { settings.showExperimentalWorldWrap = it } - addYesNoRow("{Enable experimental religion in start games}\n{HIGHLY EXPERIMENTAL - UPDATES WILL BREAK SAVES!}", - settings.showExperimentalReligion) { - settings.showExperimentalReligion = it - } if (previousScreen.game.limitOrientationsHelper != null) { addYesNoRow("Enable portrait orientation", settings.allowAndroidPortrait) {