From 4590fa6b98e17db49caaa5178dfe962dd7081972 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 5 Nov 2025 17:24:27 +0100 Subject: [PATCH 1/3] Fix hand craft only recipe name --- bzgas2/compatibility/electronic-circuit.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bzgas2/compatibility/electronic-circuit.lua b/bzgas2/compatibility/electronic-circuit.lua index 74a3440..e1f9aef 100644 --- a/bzgas2/compatibility/electronic-circuit.lua +++ b/bzgas2/compatibility/electronic-circuit.lua @@ -27,7 +27,7 @@ if util.me.handcraft() and not mods["aai-industry"] then end local hcec = futil.table.deepcopy(data.raw.recipe["electronic-circuit"]) hcec.name = "electronic-circuit-handcraft-only" - hcec.localized_name = { "item-name.electronic-circuit" } + hcec.localised_name = { "item-name.electronic-circuit" } data:extend({hcec}) util.set_icons("electronic-circuit-handcraft-only", { From afc504c7893183e7f6c84f06fc424b5c71c2f2b5 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 8 Nov 2025 21:17:11 +0100 Subject: [PATCH 2/3] 2.0.4 --- bzgas2/changelog.txt | 5 +++++ bzgas2/info.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bzgas2/changelog.txt b/bzgas2/changelog.txt index b303e3c..d7257f7 100644 --- a/bzgas2/changelog.txt +++ b/bzgas2/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 2.0.4 +Date: 08.11.2025 + Bug Fixes: + - Fix recipe name +--------------------------------------------------------------------------------------------------- Version: 2.0.3 Date: 05.11.2025 Bug Fixes: diff --git a/bzgas2/info.json b/bzgas2/info.json index bdcec07..847aa81 100644 --- a/bzgas2/info.json +++ b/bzgas2/info.json @@ -1,6 +1,6 @@ { "name": "bzgas2", - "version": "2.0.3", + "version": "2.0.4", "factorio_version": "2.0", "title": "Natural Gas", "description": "Adds a natural gas resource, along with early game plastic.", From 64d1305c45c6ceef9001f662cf8ce8884581860a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 10 Dec 2025 19:19:33 +0100 Subject: [PATCH 3/3] Fix for when foundry is disabled in settings --- bzgas2/prototypes/bakelite.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bzgas2/prototypes/bakelite.lua b/bzgas2/prototypes/bakelite.lua index e4815d1..c5c0a29 100644 --- a/bzgas2/prototypes/bakelite.lua +++ b/bzgas2/prototypes/bakelite.lua @@ -3,7 +3,7 @@ local util = require("data-util"); local prereq = {"basic-chemistry"} if mods["Krastorio2"] then table.insert(prereq, "steel-processing") -elseif mods["bzfoundry2"] then +elseif util.is_foundry() then table.insert(prereq, "foundry") elseif mods["aai-industry"] then table.insert(prereq, "automation")