Factorio: fix accidental removal of fluids from make_balanced_recipe (#754)

This commit is contained in:
CaitSith2
2022-07-08 06:35:33 -07:00
committed by GitHub
parent 9ac780102e
commit 2f53972c85
2 changed files with 3 additions and 2 deletions

View File

@@ -501,6 +501,7 @@ def get_science_pack_pools() -> Dict[str, Set[str]]:
item_stack_sizes: Dict[str, int] = items_future.result()
non_stacking_items: Set[str] = {item for item, stack in item_stack_sizes.items() if stack == 1}
stacking_items: Set[str] = set(item_stack_sizes) - non_stacking_items
valid_ingredients: Set[str] = stacking_items | fluids
# cleanup async helpers
pool.shutdown()