mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2024-11-09 00:14:37 +00:00
disable bad ending for now
This commit is contained in:
parent
c7f8d3a66a
commit
d9a60fc3ce
|
@ -29,14 +29,14 @@ layout.go:onPress(function()
|
|||
Randomizer.customseed = settings.customseed.value
|
||||
end
|
||||
|
||||
if settings.bad.value then
|
||||
Randomizer.game = "gameBadEnd"
|
||||
elseif settings.norm.value then
|
||||
--if settings.bad.value then
|
||||
-- Randomizer.game = "gameBadEnd"
|
||||
if settings.norm.value then
|
||||
Randomizer.game = "gameNormalEnd"
|
||||
elseif settings.boss.value then
|
||||
Randomizer.game = "gameAllBosses"
|
||||
else
|
||||
Randomizer.game = "game"
|
||||
Randomizer.game = "gameBestEnd"
|
||||
end
|
||||
|
||||
Randomizer.puppy = settings.puppy.value
|
||||
|
|
|
@ -13,7 +13,7 @@ return { style = 'dialog',
|
|||
},
|
||||
{
|
||||
{ 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 = 'Best ending', id = 'best', value = true },
|
||||
{ type = 'radio', group = 'objective', text = 'All bosses', id = 'boss' },
|
||||
|
|
Loading…
Reference in a new issue