Revert "Added missing player byte from table"

This reverts commit 00031687aa.
This commit is contained in:
Edos512 2020-12-04 23:54:35 +01:00
parent d9a25683f4
commit eed48a999c
1 changed files with 1 additions and 1 deletions

2
Rom.py
View File

@ -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)