Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 3.2.17
Date: 2025-12-29
Bugfixes:
- Fixed missing recipes due to iterating a table while modifying it
---------------------------------------------------------------------------------------------------
Version: 3.2.16
Date: 2025-12-21
Changes:
Expand Down
2 changes: 1 addition & 1 deletion data-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ RECIPE("soot-to-aluminium"):add_unlock("mining-with-fluid")
-- get rid of the steam power tech
TECHNOLOGY("steam-power"):set_fields {hidden = true, unit = data.raw["technology"]["mining-productivity-4"].unit}
data.raw.technology["steam-power"].research_trigger = nil
for e, effect in pairs(data.raw["technology"]["steam-power"].effects) do
for _, effect in pairs(table.deepcopy(data.raw["technology"]["steam-power"].effects)) do
if effect.type == "unlock-recipe" then
RECIPE(effect.recipe):remove_unlock("steam-power"):set_fields {enabled = true}
else
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PyBlock",
"version": "3.2.16",
"version": "3.2.17",
"factorio_version": "2.0",
"title": "PyBlock",
"author": "KingArthur",
Expand Down