unroll unneeded inner generator expression
This commit is contained in:
parent
2e32ab152e
commit
4b2a9b3e87
3
Shops.py
3
Shops.py
|
@ -287,8 +287,7 @@ total_dynamic_shop_slots = sum(3 for shopname, data in shop_table.items() if not
|
||||||
|
|
||||||
SHOP_ID_START = 0x400000
|
SHOP_ID_START = 0x400000
|
||||||
shop_table_by_location_id = {cnt: s for cnt, s in enumerate(
|
shop_table_by_location_id = {cnt: s for cnt, s in enumerate(
|
||||||
(item for sublist in (f"{name} Slot {num}" for num in range(1, 4) for name in shop_table)
|
(f"{name} Slot {num}" for num in range(1, 4) for name in shop_table), start=SHOP_ID_START)}
|
||||||
for item in sublist), start=SHOP_ID_START)}
|
|
||||||
shop_table_by_location_id[(SHOP_ID_START + total_shop_slots)] = "Old Man Sword Cave"
|
shop_table_by_location_id[(SHOP_ID_START + total_shop_slots)] = "Old Man Sword Cave"
|
||||||
shop_table_by_location_id[(SHOP_ID_START + total_shop_slots + 1)] = "Take-Any #1"
|
shop_table_by_location_id[(SHOP_ID_START + total_shop_slots + 1)] = "Take-Any #1"
|
||||||
shop_table_by_location_id[(SHOP_ID_START + total_shop_slots + 2)] = "Take-Any #2"
|
shop_table_by_location_id[(SHOP_ID_START + total_shop_slots + 2)] = "Take-Any #2"
|
||||||
|
|
Loading…
Reference in New Issue