From 6642769caf09937fb423426a48921e67858850a8 Mon Sep 17 00:00:00 2001 From: pepperpow Date: Mon, 23 Nov 2020 20:17:03 -0600 Subject: [PATCH] Added missing player byte from table --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 1b3ed244e7..f614fea14b 100644 --- a/Rom.py +++ b/Rom.py @@ -1516,7 +1516,7 @@ def write_custom_shops(rom, world, player): item_data = [shop_id, ItemFactory(item['item'], player).code] + int16_as_bytes(item['price']) + [ item['max'], ItemFactory(item['replacement'], player).code if item['replacement'] else 0xFF] + int16_as_bytes( - item['replacement_price']) + item['replacement_price']) + [item['player']] items_data.extend(item_data) rom.write_bytes(0x184800, shop_data)