From 9ab5ec426de48a3fcf77c45d6e95f2560ccf426b Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 6 May 2021 12:53:57 +0200 Subject: [PATCH] remove leftover from when recipes were events --- worlds/factorio/Mod.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/worlds/factorio/Mod.py b/worlds/factorio/Mod.py index b9942fbb..0ae2d231 100644 --- a/worlds/factorio/Mod.py +++ b/worlds/factorio/Mod.py @@ -39,8 +39,7 @@ def generate_mod(world: MultiWorld, player: int, seedname: str): player_names = {x: world.player_names[x][0] for x in world.player_ids} locations = [] for location in world.get_filled_locations(player): - if not location.name.startswith("recipe-"): # introduce this as a new location property? - locations.append((location.name, location.item.name, location.item.player)) + locations.append((location.name, location.item.name, location.item.player)) mod_name = f"AP-{seedname}-P{player}-{world.player_names[player][0]}" tech_cost = {0: 0.1, 1: 0.25,