sm64ex: Add DeathLink Support

This commit is contained in:
N00byKing
2022-02-14 16:19:25 +01:00
committed by Fabian Dill
parent 3fc93a33c8
commit 7503317d49
2 changed files with 5 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
import typing
from Options import Option, DefaultOnToggle, Range, Toggle
from Options import Option, DefaultOnToggle, Range, Toggle, DeathLink
class EnableCoinStars(DefaultOnToggle):
"""Disable to Ignore 100 Coin Stars. You can still collect them, but they don't do anything"""
@@ -35,5 +35,6 @@ sm64_options: typing.Dict[str,type(Option)] = {
"EnableCoinStars": EnableCoinStars,
"StrictCapRequirements": StrictCapRequirements,
"StarsToFinish": StarsToFinish,
"ExtraStars": ExtraStars
"ExtraStars": ExtraStars,
"DeathLink": DeathLink,
}