From 7591404151a15015e77682c37a28fa5628dbb7dd Mon Sep 17 00:00:00 2001 From: alwaysintreble Date: Sat, 18 Mar 2023 20:37:06 -0500 Subject: [PATCH] OOT: set default for adult trade start if the set is empty --- worlds/oot/Options.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/worlds/oot/Options.py b/worlds/oot/Options.py index 20593826..35b477ae 100644 --- a/worlds/oot/Options.py +++ b/worlds/oot/Options.py @@ -1045,6 +1045,11 @@ class AdultTradeStart(OptionSet): "Claim Check", } + def __init__(self, value: typing.Iterable[str]): + if not value: + value = self.default + super().__init__(value) + itempool_options: typing.Dict[str, type(Option)] = { "item_pool_value": ItemPoolValue,