Compare commits

..

No commits in common. "main" and "2.0.3" have entirely different histories.
main ... 2.0.3

4 changed files with 3 additions and 13 deletions

View file

@ -1,14 +1,4 @@
---------------------------------------------------------------------------------------------------
Version: 2.0.5
Date: 10.12.2025
Bug Fixes:
- Fix for when foundry is disabled in settings
---------------------------------------------------------------------------------------------------
Version: 2.0.4
Date: 08.11.2025
Bug Fixes:
- Fix recipe name
---------------------------------------------------------------------------------------------------
Version: 2.0.3
Date: 05.11.2025
Bug Fixes:

View file

@ -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.localised_name = { "item-name.electronic-circuit" }
hcec.localized_name = { "item-name.electronic-circuit" }
data:extend({hcec})
util.set_icons("electronic-circuit-handcraft-only",
{

View file

@ -1,6 +1,6 @@
{
"name": "bzgas2",
"version": "2.0.5",
"version": "2.0.3",
"factorio_version": "2.0",
"title": "Natural Gas",
"description": "Adds a natural gas resource, along with early game plastic.",

View file

@ -3,7 +3,7 @@ local util = require("data-util");
local prereq = {"basic-chemistry"}
if mods["Krastorio2"] then
table.insert(prereq, "steel-processing")
elseif util.is_foundry() then
elseif mods["bzfoundry2"] then
table.insert(prereq, "foundry")
elseif mods["aai-industry"] then
table.insert(prereq, "automation")