Add shop door ids to tables (used when shop locations are vanilla)

Do not replace Upgrade Fairy with retro shop
This commit is contained in:
compiling
2020-01-02 11:09:14 +11:00
parent 6b97cebec5
commit 0eed4bb527
5 changed files with 36 additions and 33 deletions

View File

@@ -270,7 +270,7 @@ def copy_dynamic_regions_and_locations(world, ret):
# Note: ideally exits should be copied here, but the current use case (Take anys) do not require this
if region.shop:
new_reg.shop = Shop(new_reg, region.shop.room_id, region.shop.type, region.shop.shopkeeper_config, region.shop.replaceable)
new_reg.shop = Shop(new_reg, region.shop.room_id, region.shop.default_door_id, region.shop.type, region.shop.shopkeeper_config, region.shop.replaceable)
ret.shops.append(new_reg.shop)
for location in world.dynamic_locations: