From 04c34298390313afd1b482b7e4a480962f368ff1 Mon Sep 17 00:00:00 2001 From: alwaysintreble Date: Fri, 22 Jul 2022 00:04:41 -0500 Subject: [PATCH] LttP: Fix scam options (#806) --- worlds/alttp/Options.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worlds/alttp/Options.py b/worlds/alttp/Options.py index b42a5eb377..183f3eda91 100644 --- a/worlds/alttp/Options.py +++ b/worlds/alttp/Options.py @@ -215,9 +215,11 @@ class Scams(Choice): option_all = 3 alias_false = 0 + @property def gives_king_zora_hint(self): return self.value in {0, 2} + @property def gives_bottle_merchant_hint(self): return self.value in {0, 1}