Religion goes from alpha into beta: available from stat screen immediately (#5149)

This commit is contained in:
Xander Lenstra 2021-09-09 06:24:56 +02:00 committed by GitHub
parent bebfe92fb1
commit 7b6e57d3b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 7 deletions

View File

@ -47,7 +47,6 @@ class GameSettings {
var visualMods = HashSet<String>()
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"

View File

@ -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)

View File

@ -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) {