Skip to content

Commit

Permalink
Fixing the map never ends
Browse files Browse the repository at this point in the history
  • Loading branch information
dyceron committed Feb 6, 2024
1 parent c284dd6 commit 0d1f9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/open_samus_returns_rando/specific_patches/map_icons.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def patch_tiles(editor: PatcherEditor):
for door in doors:
if door in door_tile["actor_name"]:
door_tile["clear_condition"] = ""
if "closed" in door_tile["icon"]:
if "closed" in door_tile["icon"] or "charge" in door_tile["icon"]:
if "left" in door_tile["icon"]:
door_tile["icon"] = "doorpowerleft"
else:
Expand Down

0 comments on commit 0d1f9fe

Please sign in to comment.