Skip to content

Commit

Permalink
Fix items being lost on game overs or closing the game without saving (
Browse files Browse the repository at this point in the history
…ArchipelagoMW#31)

* Fix items being lost on game overs or closing the game without saving

* Add Special Zone Clear to the previous fix
  • Loading branch information
TheLX5 authored Mar 3, 2024
1 parent 0e94a15 commit bec98f8
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 51 deletions.
4 changes: 2 additions & 2 deletions worlds/smw/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
SMW_BLOCKSANITY_DATA = WRAM_START + 0x1A400
SMW_BLOCKSANITY_FLAGS = WRAM_START + 0x1A010
SMW_LEVEL_CLEAR_FLAGS = WRAM_START + 0x1A200
SMW_SPECIAL_WORLD_CLEAR = WRAM_START + 0x1FFF
SMW_SPECIAL_WORLD_CLEAR = WRAM_START + 0x1F1E


SMW_GOAL_DATA = ROM_START + 0x01BFA0
Expand Down Expand Up @@ -62,7 +62,7 @@
SMW_ACTIVE_THWIMP_ADDR = WRAM_START + 0x0F3C
SMW_GOAL_ITEM_COUNT = WRAM_START + 0x1A01E

SMW_RECV_PROGRESS_ADDR = WRAM_START + 0x1A00E
SMW_RECV_PROGRESS_ADDR = WRAM_START + 0x01F2C

SMW_BLOCKSANITY_BLOCK_COUNT = 582

Expand Down
Loading

0 comments on commit bec98f8

Please sign in to comment.