LttP: Implement DeathLink

This commit is contained in:
Fabian Dill
2021-11-01 19:37:47 +01:00
parent 8ff01ca979
commit 0e0cc0ad16
7 changed files with 99 additions and 50 deletions

View File

@@ -1,6 +1,6 @@
import typing
from Options import Choice, Range, Option, Toggle, DefaultOnToggle
from Options import Choice, Range, Option, Toggle, DefaultOnToggle, DeathLink
class Logic(Choice):
@@ -292,6 +292,7 @@ alttp_options: typing.Dict[str, type(Option)] = {
"music": Music,
"reduceflashing": ReduceFlashing,
"triforcehud": TriforceHud,
"glitch_boots": DefaultOnToggle
"glitch_boots": DefaultOnToggle,
"death_link": DeathLink
}