Compare commits

..

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

5 changed files with 1272 additions and 22 deletions

View file

@ -1,19 +1,4 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 2.1.0
Date: 11.03.2026
Changes:
- Switch to bzlib - Please install the new dependency
---------------------------------------------------------------------------------------------------
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 Version: 2.0.3
Date: 05.11.2025 Date: 05.11.2025
Bug Fixes: Bug Fixes:

View file

@ -27,7 +27,7 @@ if util.me.handcraft() and not mods["aai-industry"] then
end end
local hcec = futil.table.deepcopy(data.raw.recipe["electronic-circuit"]) local hcec = futil.table.deepcopy(data.raw.recipe["electronic-circuit"])
hcec.name = "electronic-circuit-handcraft-only" hcec.name = "electronic-circuit-handcraft-only"
hcec.localised_name = { "item-name.electronic-circuit" } hcec.localized_name = { "item-name.electronic-circuit" }
data:extend({hcec}) data:extend({hcec})
util.set_icons("electronic-circuit-handcraft-only", util.set_icons("electronic-circuit-handcraft-only",
{ {

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "bzgas2", "name": "bzgas2",
"version": "2.1.0", "version": "2.0.3",
"factorio_version": "2.0", "factorio_version": "2.0",
"title": "Natural Gas", "title": "Natural Gas",
"description": "Adds a natural gas resource, along with early game plastic.", "description": "Adds a natural gas resource, along with early game plastic.",
@ -8,7 +8,6 @@
"homepage": "https://discord.gg/ufvFUJtVwk", "homepage": "https://discord.gg/ufvFUJtVwk",
"dependencies": [ "dependencies": [
"base >= 2.0.0", "base >= 2.0.0",
"bzlib",
"? bzfoundry2 >= 2.0.0", "? bzfoundry2 >= 2.0.0",
"? bztitanium2 >= 2.0.26", "? bztitanium2 >= 2.0.26",
"? bzlead2 >= 2.0.29", "? bzlead2 >= 2.0.29",

View file

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