From 36f60c78b00f685ee6114a89cb9f85b3bd4e0c27 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 18 Jul 2021 06:08:02 -0500 Subject: [PATCH] Fixed incorrect Collection Rate in credits --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 8dcf902e..ae6b4114 100644 --- a/Rom.py +++ b/Rom.py @@ -894,7 +894,7 @@ def patch_rom(world, rom, player, team, enemized, is_mystery=False): write_int16(rom, 0x187010, credits_total) # dynamic credits if credits_total != 216: # collection rate address: - cr_address = 0x2391C4 + cr_address = 0x2391C2 cr_pc = cr_address - 0x120000 # convert to pc mid_top, mid_bot = credits_digit((credits_total // 10) % 10) last_top, last_bot = credits_digit(credits_total % 10)