Adding an Auto default for Pre-open Pyramid option

This commit is contained in:
codemann8
2022-05-04 11:36:28 -05:00
parent 1c2b27933b
commit 56b2e0e5e4
10 changed files with 46 additions and 13 deletions

View File

@@ -218,8 +218,11 @@
]
},
"openpyramid": {
"action": "store_true",
"type": "bool"
"choices": [
"auto",
"yes",
"no"
]
},
"rom": {},
"loglevel": {

View File

@@ -138,6 +138,9 @@
"randomizer.entrance.openpyramid": "Pre-open Pyramid Hole",
"randomizer.entrance.openpyramid.auto": "Auto",
"randomizer.entrance.openpyramid.yes": "Yes",
"randomizer.entrance.openpyramid.no": "No",
"randomizer.entrance.shuffleganon": "Include Ganon's Tower and Pyramid Hole in shuffle pool",
"randomizer.entrance.shufflelinks": "Include Link's House in the shuffle pool",
"randomizer.entrance.overworld_map": "Overworld Map",

View File

@@ -1,6 +1,16 @@
{
"widgets": {
"openpyramid": { "type": "checkbox" },
"openpyramid": {
"type": "selectbox",
"options": [
"auto",
"yes",
"no"
],
"config": {
"width": 10
}
},
"shuffleganon": { "type": "checkbox" },
"shufflelinks": { "type": "checkbox" },
"overworld_map": {