Swap implementation of Take Any fix to match Multiworld.

This commit is contained in:
compiling
2020-01-03 08:27:22 +11:00
parent f6bad85a15
commit edd656b903
5 changed files with 36 additions and 37 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.default_door_id, region.shop.type, region.shop.shopkeeper_config, region.shop.replaceable)
new_reg.shop = Shop(new_reg, region.shop.room_id, region.shop.type, region.shop.shopkeeper_config, region.shop.replaceable)
ret.shops.append(new_reg.shop)
for location in world.dynamic_locations: