LttP: Fix scam options (#806)
This commit is contained in:
parent
cabbe0aaf6
commit
04c3429839
|
@ -215,9 +215,11 @@ class Scams(Choice):
|
||||||
option_all = 3
|
option_all = 3
|
||||||
alias_false = 0
|
alias_false = 0
|
||||||
|
|
||||||
|
@property
|
||||||
def gives_king_zora_hint(self):
|
def gives_king_zora_hint(self):
|
||||||
return self.value in {0, 2}
|
return self.value in {0, 2}
|
||||||
|
|
||||||
|
@property
|
||||||
def gives_bottle_merchant_hint(self):
|
def gives_bottle_merchant_hint(self):
|
||||||
return self.value in {0, 1}
|
return self.value in {0, 1}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue