From 4470642a06e3fa0ff350572313184a11a6f5a7ee Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 1 Nov 2025 13:35:34 +0100 Subject: [PATCH 1/3] Fix foundry requiring crucible while crucible is being made in foundry --- bzcarbon2/me.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bzcarbon2/me.lua b/bzcarbon2/me.lua index c63d486..212a2ba 100644 --- a/bzcarbon2/me.lua +++ b/bzcarbon2/me.lua @@ -84,7 +84,6 @@ me.crucible_ingredients = {"zirconia", "silica", "stone-brick"} me.furnaces = { "electric-furnace", - "foundry", -- Space Age "basic-foundry", -- BZ Tin "electric-foundry", -- BZ "industrial-furnace", -- AAI @@ -106,6 +105,11 @@ me.furnaces = { "5d-industrial-furnace", } +-- Space Age foundry conflicts with bzfoundry burner foundry +if has_mod("space-age") then + table.insert(me.furnaces, "foundry") +end + if me.use_flake_graphite() then table.insert(me.resources, {"graphite", "nauvis"}) end From a15d04f8a626ce1c05c0f755ede804bcfd883e1a Mon Sep 17 00:00:00 2001 From: pla Date: Tue, 28 Oct 2025 12:00:43 +0100 Subject: [PATCH 2/3] Fix K2 nanotube renames --- bzcarbon2/carbon-recipe-final-k2.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bzcarbon2/carbon-recipe-final-k2.lua b/bzcarbon2/carbon-recipe-final-k2.lua index e4542ce..c7b4839 100644 --- a/bzcarbon2/carbon-recipe-final-k2.lua +++ b/bzcarbon2/carbon-recipe-final-k2.lua @@ -4,8 +4,8 @@ if util.k2() then if util.me.use_fullerenes() then -- Add extra nanotube recipes. -- This could be moved to data-updates in future if necessary - cutil.nanotube_recipe("imersium-plate") - cutil.nanotube_recipe("kr-s-c-imersium-beam", "imersium-beam") - cutil.nanotube_recipe("kr-s-c-imersium-gear-wheel", "imersium-gear-wheel") + cutil.nanotube_recipe("kr-imersium-plate") + cutil.nanotube_recipe("kr-easy-imersium-beam","kr-imersium-beam") + cutil.nanotube_recipe("kr-easy-imersium-gear-wheel","kr-imersium-gear-wheel") end end From 70202a02317b42fff1a2462446e0932568c5c822 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 1 Nov 2025 23:10:54 +0100 Subject: [PATCH 3/3] 2.0.24 --- bzcarbon2/changelog.txt | 7 +++++++ bzcarbon2/info.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bzcarbon2/changelog.txt b/bzcarbon2/changelog.txt index 478a445..9707105 100644 --- a/bzcarbon2/changelog.txt +++ b/bzcarbon2/changelog.txt @@ -1,4 +1,11 @@ --------------------------------------------------------------------------------------------------- +Version: 2.0.24 +Date: 01.11.2025 + Bug Fixes: + - Fix graphite recipe icon scale + - Fix foundry requiring crucible while crucible is being made in foundry + - Fix K2 nanotube renames (thanks pla) +--------------------------------------------------------------------------------------------------- Version: 2.0.23 Date: 21.10.2025 Changes: diff --git a/bzcarbon2/info.json b/bzcarbon2/info.json index 7885cc2..0463480 100644 --- a/bzcarbon2/info.json +++ b/bzcarbon2/info.json @@ -1,6 +1,6 @@ { "name": "bzcarbon2", - "version": "2.0.23", + "version": "2.0.24", "factorio_version": "2.0", "title": "Graphite & Diamonds - Legacy", "description": "Adds elemental carbon items to the game, including graphite, diamonds, graphene, and more.",