Factorio: Allow assembling machine 1 to use fluids

Should improve the flow of the game a bit, no longer having to wait for automation-2 to get started with rocket fuel, processing units and others.
This commit is contained in:
Fabian Dill
2021-05-03 18:06:21 +02:00
parent 328f132498
commit 77d3bf9172
3 changed files with 9 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ with open(source_file) as f:
raw = json.load(f)
with open(recipe_source_file) as f:
raw_recipes = json.load(f)
tech_table = {}
tech_table: Dict[str, int] = {}
technology_table: Dict[str, Technology] = {}
always = lambda state: True