From eed48a999c31a17a04e8644279d5a075c9441a6f Mon Sep 17 00:00:00 2001 From: Edos512 <30857677+Edos512@users.noreply.github.com> Date: Fri, 4 Dec 2020 23:54:35 +0100 Subject: [PATCH] Revert "Added missing player byte from table" This reverts commit 00031687aa15ee2a0281be79cd65474a9610b2fa. --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 9dde042c..d2d74e6e 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['player']] + item['replacement_price']) items_data.extend(item_data) rom.write_bytes(0x184800, shop_data)