disable bad ending for now

This commit is contained in:
duncathan 2020-02-26 01:52:08 -06:00
parent c7f8d3a66a
commit d9a60fc3ce
2 changed files with 5 additions and 5 deletions

View file

@ -29,14 +29,14 @@ layout.go:onPress(function()
Randomizer.customseed = settings.customseed.value Randomizer.customseed = settings.customseed.value
end end
if settings.bad.value then --if settings.bad.value then
Randomizer.game = "gameBadEnd" -- Randomizer.game = "gameBadEnd"
elseif settings.norm.value then if settings.norm.value then
Randomizer.game = "gameNormalEnd" Randomizer.game = "gameNormalEnd"
elseif settings.boss.value then elseif settings.boss.value then
Randomizer.game = "gameAllBosses" Randomizer.game = "gameAllBosses"
else else
Randomizer.game = "game" Randomizer.game = "gameBestEnd"
end end
Randomizer.puppy = settings.puppy.value Randomizer.puppy = settings.puppy.value

View file

@ -13,7 +13,7 @@ return { style = 'dialog',
}, },
{ {
{ type = 'label', text = 'Objective' }, { type = 'label', text = 'Objective' },
{ type = 'radio', group = 'objective', text = 'Bad ending', id = 'bad' }, -- { type = 'radio', group = 'objective', text = 'Bad ending', id = 'bad' },
{ type = 'radio', group = 'objective', text = 'Normal ending', id = 'norm'}, { type = 'radio', group = 'objective', text = 'Normal ending', id = 'norm'},
{ type = 'radio', group = 'objective', text = 'Best ending', id = 'best', value = true }, { type = 'radio', group = 'objective', text = 'Best ending', id = 'best', value = true },
{ type = 'radio', group = 'objective', text = 'All bosses', id = 'boss' }, { type = 'radio', group = 'objective', text = 'All bosses', id = 'boss' },