mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Factorio: mark all potential rocket recipe ingredients as advancements
This commit is contained in:
@@ -256,6 +256,9 @@ rocket_recipes = {
|
||||
Options.MaxSciencePack.option_automation_science_pack:
|
||||
{"copper-cable": 10, "iron-plate": 10, "wood": 10}
|
||||
}
|
||||
for products in rocket_recipes.values():
|
||||
requirements = get_rocket_requirements(frozenset(products))
|
||||
advancement_technologies |= requirements
|
||||
|
||||
# progressive technologies
|
||||
# auto-progressive
|
||||
|
@@ -25,7 +25,7 @@ class Factorio(World):
|
||||
else:
|
||||
item_name = tech_name
|
||||
|
||||
tech_item = Item(item_name, item_name in advancement_technologies or item_name in victory_tech_names,
|
||||
tech_item = Item(item_name, item_name in advancement_technologies,
|
||||
tech_id, self.player)
|
||||
tech_item.game = "Factorio"
|
||||
if tech_name in self.static_nodes:
|
||||
|
Reference in New Issue
Block a user