Skip to content

Commit

Permalink
Update Rules.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed May 6, 2024
1 parent af44e70 commit fa9e7a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/kh1/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def has_at_least(state: CollectionState, player: int, item: str, x: int) -> bool
return state.count(item, player) >= x

def has_postcards(state: CollectionState, player: int, postcards_required: int) -> bool:
postcards_available = 3 #You can get three postcards without no items
postcards_available = 3 #You can get three postcards without any items
if has_item(state, player, "Progressive Thunder"):
postcards_available = postcards_available + 2 #Gizmo Shop Postcards
if has_item(state, player, "Green Trinity"):
Expand Down

0 comments on commit fa9e7a2

Please sign in to comment.