fix stageloader post-game options
This commit is contained in:
parent
cdf36c1483
commit
191ef7c255
2 changed files with 5 additions and 8 deletions
|
@ -1,5 +1,3 @@
|
|||
ARG REPOSITORY_TOKEN
|
||||
|
||||
FROM mcr.microsoft.com/powershell:latest AS prebuild
|
||||
WORKDIR /src
|
||||
COPY . .
|
||||
|
@ -12,8 +10,6 @@ RUN yarn
|
|||
RUN yarn build
|
||||
|
||||
FROM mcr.microsoft.com/powershell:latest AS final
|
||||
ARG REPOSITORY_TOKEN
|
||||
ENV REPOSITORY_TOKEN ${REPOSITORY_TOKEN}
|
||||
WORKDIR /src
|
||||
RUN apt-get update
|
||||
RUN apt install -y git
|
||||
|
|
|
@ -116,13 +116,13 @@ export default {
|
|||
stageLoaderLevelOptions: stageLoaderLevels,
|
||||
stageLoaderPresetOptions: stageLoaderPresets,
|
||||
removeDialogueOptions: [
|
||||
{ value: 'yes', label: 'Always' },
|
||||
{ value: 'pv5', label: 'Not in Pinna 5' },
|
||||
{ value: 'yes', label: 'Always' },
|
||||
{ value: 'no', label: "Don't include" },
|
||||
],
|
||||
skippableFMVsOptions: [
|
||||
{ value: 'yes', label: 'Always' },
|
||||
{ value: 'pp', label: 'Not in Pinna' },
|
||||
{ value: 'yes', label: 'Always' },
|
||||
{ value: 'no', label: "Don't include" },
|
||||
],
|
||||
levelOrderOptions: [
|
||||
|
@ -131,9 +131,10 @@ export default {
|
|||
{ value: 'random', label: 'Fully random' },
|
||||
],
|
||||
postGameOptions: [
|
||||
{ value: '0F00', label: 'Return to title screen' },
|
||||
{ value: '0F00', label: 'Return to the title screen' },
|
||||
{ value: '0109', label: 'Load the flooded plaza' },
|
||||
{ value: '3400', label: 'Load post-Corona plaza' },
|
||||
{ value: '0102', label: 'Load post-Corona plaza' },
|
||||
{ value: '3400', label: 'Load Corona Montain' },
|
||||
{ value: '3C00', label: 'Load the Bowser fight' },
|
||||
],
|
||||
removeDialogSelection: 'yes',
|
||||
|
|
Loading…
Reference in a new issue