File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11---------------------------------------------------------------------------------------------------
2+ Version: 3.2.17
3+ Date: 2025-12-29
4+ Bugfixes:
5+ - Fixed missing recipes due to iterating a table while modifying it
6+ ---------------------------------------------------------------------------------------------------
27Version: 3.2.16
38Date: 2025-12-21
49 Changes:
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ RECIPE("soot-to-aluminium"):add_unlock("mining-with-fluid")
147147-- get rid of the steam power tech
148148TECHNOLOGY (" steam-power" ):set_fields {hidden = true , unit = data .raw [" technology" ][" mining-productivity-4" ].unit }
149149data .raw .technology [" steam-power" ].research_trigger = nil
150- for e , effect in pairs (data .raw [" technology" ][" steam-power" ].effects ) do
150+ for _ , effect in pairs (table . deepcopy ( data .raw [" technology" ][" steam-power" ].effects ) ) do
151151 if effect .type == " unlock-recipe" then
152152 RECIPE (effect .recipe ):remove_unlock (" steam-power" ):set_fields {enabled = true }
153153 else
Original file line number Diff line number Diff line change 11{
22 "name" : " PyBlock" ,
3- "version" : " 3.2.16 " ,
3+ "version" : " 3.2.17 " ,
44 "factorio_version" : " 2.0" ,
55 "title" : " PyBlock" ,
66 "author" : " KingArthur" ,
You can’t perform that action at this time.
0 commit comments