Skip to content

Commit

Permalink
Update client.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvris committed Jan 31, 2025
1 parent 9ffcc45 commit 909e47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/kss/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ async def game_watcher(self, ctx: "SNIContext") -> None:
new_checks.append(BASE_ID + 11)

revenge = int.from_bytes(await snes_read(ctx, KSS_REVENGE_CHAPTERS, 1), "little")
for i in range(revenge):
for i in range(revenge & 0x7):
location = BASE_ID + 79 + i
if location not in ctx.checked_locations:
new_checks.append(location)
Expand Down

0 comments on commit 909e47a

Please sign in to comment.