Minecraft: add missing minecraft defaults
This commit is contained in:
parent
a0849f9416
commit
aec39c919c
6
Utils.py
6
Utils.py
|
@ -196,7 +196,11 @@ def get_default_options() -> dict:
|
||||||
"glitch_triforce_room": 1,
|
"glitch_triforce_room": 1,
|
||||||
"race": 0,
|
"race": 0,
|
||||||
"plando_options": "bosses",
|
"plando_options": "bosses",
|
||||||
}
|
},
|
||||||
|
"minecraft_options": {
|
||||||
|
"forge_directory": "Minecraft Forge server",
|
||||||
|
"max_heap_size": "2G"
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
return options
|
return options
|
||||||
|
|
|
@ -145,6 +145,7 @@ class HeartColor(Choice):
|
||||||
return cls(random.randint(0, 3))
|
return cls(random.randint(0, 3))
|
||||||
return super(HeartColor, cls).from_text(text)
|
return super(HeartColor, cls).from_text(text)
|
||||||
|
|
||||||
|
|
||||||
class QuickSwap(DefaultOnToggle):
|
class QuickSwap(DefaultOnToggle):
|
||||||
displayname = "L/R Quickswapping"
|
displayname = "L/R Quickswapping"
|
||||||
|
|
||||||
|
@ -162,9 +163,11 @@ class MenuSpeed(Choice):
|
||||||
class Music(DefaultOnToggle):
|
class Music(DefaultOnToggle):
|
||||||
displayname = "Play music"
|
displayname = "Play music"
|
||||||
|
|
||||||
|
|
||||||
class ReduceFlashing(DefaultOnToggle):
|
class ReduceFlashing(DefaultOnToggle):
|
||||||
displayname = "Reduce Screen Flashes"
|
displayname = "Reduce Screen Flashes"
|
||||||
|
|
||||||
|
|
||||||
class TriforceHud(Choice):
|
class TriforceHud(Choice):
|
||||||
displayname = "Display Method for Triforce Hunt"
|
displayname = "Display Method for Triforce Hunt"
|
||||||
option_normal = 0
|
option_normal = 0
|
||||||
|
@ -172,6 +175,7 @@ class TriforceHud(Choice):
|
||||||
option_hide_required = 2
|
option_hide_required = 2
|
||||||
option_hide_both = 3
|
option_hide_both = 3
|
||||||
|
|
||||||
|
|
||||||
alttp_options: typing.Dict[str, type(Option)] = {
|
alttp_options: typing.Dict[str, type(Option)] = {
|
||||||
"crystals_needed_for_gt": CrystalsTower,
|
"crystals_needed_for_gt": CrystalsTower,
|
||||||
"crystals_needed_for_ganon": CrystalsGanon,
|
"crystals_needed_for_ganon": CrystalsGanon,
|
||||||
|
|
Loading…
Reference in New Issue