Skip to content

Commit f16b60b

Browse files
committed
2 parents de49eae + ce14544 commit f16b60b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/crystal_project/rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def has_key_ring(self, state: CollectionState, key_name: str) -> bool:
141141
return False
142142

143143
def has_jidamba_keys(self, state: CollectionState) -> bool:
144-
if self.has_key(state, FOLIAGE_KEY, 1) and self.has_key(state, CAVE_KEY, 1) and self.has_key(state, CANOPY_KEY,1):
144+
if state.has(SKELETON_KEY, self.player) or (self.has_key(state, FOLIAGE_KEY, 1) and self.has_key(state, CAVE_KEY, 1) and self.has_key(state, CANOPY_KEY,1)):
145145
return True
146146
else:
147147
return False

0 commit comments

Comments
 (0)