ALttP: remove link_palettes option (#1004)

* ALttP: remove link_palettes option
It doesn't work anyway so better to have it not visible.
This commit is contained in:
espeon65536
2022-09-07 11:16:32 -07:00
committed by GitHub
parent ade82e3d60
commit 99d2caa57d
3 changed files with 7 additions and 7 deletions

View File

@@ -282,8 +282,8 @@ class ShieldPalette(Palette):
display_name = "Shield Palette"
class LinkPalette(Palette):
display_name = "Link Palette"
# class LinkPalette(Palette):
# display_name = "Link Palette"
class HeartBeep(Choice):
@@ -387,7 +387,7 @@ alttp_options: typing.Dict[str, type(Option)] = {
"hud_palettes": HUDPalette,
"sword_palettes": SwordPalette,
"shield_palettes": ShieldPalette,
"link_palettes": LinkPalette,
# "link_palettes": LinkPalette,
"heartbeep": HeartBeep,
"heartcolor": HeartColor,
"quickswap": QuickSwap,