mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-13 08:14:29 +07:00
Religion goes from alpha into beta: available from stat screen immediately (#5149)
This commit is contained in:
parent
bebfe92fb1
commit
7b6e57d3b5
@ -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"
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user