Compare commits

..

7 commits
main ... main

Author SHA1 Message Date
Simon Brodtmann
2306ca1cf7 2.2.2 2026-03-16 21:54:30 +01:00
Simon Brodtmann
48010919b1 Correct renamed "efficiency-module" 2026-03-13 23:14:05 +01:00
Simon Brodtmann
51545e3a24 2.2.1 2026-03-11 23:42:02 +01:00
Simon Brodtmann
746d949dfd K2: Fix crash due to wrong call of get_setting 2026-03-11 23:41:17 +01:00
Simon Brodtmann
383fca46b5 2.2.0 2026-03-11 23:31:07 +01:00
Simon Brodtmann
7430525629 Switch to bzlib 2026-03-11 23:30:06 +01:00
Simon Brodtmann
f7cf02ff6f Fix booleans being strings 2026-02-24 22:50:09 +01:00
6 changed files with 24 additions and 2172 deletions

View file

@ -1,4 +1,19 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 2.2.2
Date: 16.03.2026
Bug Fixes:
- Correct renamed "efficiency-module"
---------------------------------------------------------------------------------------------------
Version: 2.2.1
Date: 11.03.2026
Bug Fixes:
- K2: Fix crash due to wrong call of get_setting
---------------------------------------------------------------------------------------------------
Version: 2.2.0
Date: 11.03.2026
Changes:
- Switch to bzlib - Please install the new dependency
---------------------------------------------------------------------------------------------------
Version: 2.1.14 Version: 2.1.14
Date: 21.10.2025 Date: 21.10.2025
Legacy version meant to be played with my other forks and ATOM. Legacy version meant to be played with my other forks and ATOM.

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "bzzirconium2", "name": "bzzirconium2",
"version": "2.1.14", "version": "2.2.2",
"factorio_version": "2.0", "factorio_version": "2.0",
"title": "Zirconium - Legacy", "title": "Zirconium - Legacy",
"description": "Adds zircon, zirconia, zirconium, and more to the base game.", "description": "Adds zircon, zirconia, zirconium, and more to the base game.",
@ -8,6 +8,7 @@
"homepage": "https://discord.gg/ufvFUJtVwk", "homepage": "https://discord.gg/ufvFUJtVwk",
"dependencies": [ "dependencies": [
"base >= 2.0.0", "base >= 2.0.0",
"bzlib",
"? space-exploration", "? space-exploration",
"? aai-industry", "? aai-industry",
"? Krastorio2", "? Krastorio2",

View file

@ -16,7 +16,7 @@ if util.me.ammo() then
end end
table.insert(mag, {type="fluid", name="heavy-oil", amount=ct}) table.insert(mag, {type="fluid", name="heavy-oil", amount=ct})
if not util.k2() or not util.get_setting("kr-more-realistic-weapon") then if not util.k2() or not util.me.get_setting("kr-more-realistic-weapon") then
table.insert(mag, util.item("piercing-rounds-magazine", ct)) table.insert(mag, util.item("piercing-rounds-magazine", ct))
data:extend({ data:extend({

View file

@ -21,7 +21,7 @@ if util.me.use_cermet() then
end end
util.add_prerequisite("productivity-module-3", "cermet") util.add_prerequisite("productivity-module-3", "cermet")
util.add_prerequisite("speed-module-3", "cermet") util.add_prerequisite("speed-module-3", "cermet")
util.add_prerequisite("effectivity-module-3", "cermet") util.add_prerequisite("efficiency-module-3", "cermet")
-- utility science techs behind cermet -- utility science techs behind cermet
util.add_prerequisite("rocket-control-unit", "cermet") util.add_prerequisite("rocket-control-unit", "cermet")

View file

@ -115,7 +115,7 @@ if util.k2() then
util.add_ingredient("kr-antimatter-reactor", nuclear_z, 350) util.add_ingredient("kr-antimatter-reactor", nuclear_z, 350)
if util.me.early() then if util.me.early() then
util.add_ingredient("stone-brick", "zircon", 1) util.replace_some_ingredient("stone-brick", "stone", 5, "zircon", 5)
end end
if mods["space-exploration"] then if mods["space-exploration"] then
util.replace_some_ingredient("se-stone-brick-vulcanite", "stone", 2, "zircon", 2) util.replace_some_ingredient("se-stone-brick-vulcanite", "stone", 2, "zircon", 2)
@ -246,7 +246,7 @@ if util.me.use_cermet() then
if mods["modules-t4"] then if mods["modules-t4"] then
util.add_ingredient("speed-module-4", "cermet", 6) util.add_ingredient("speed-module-4", "cermet", 6)
util.add_ingredient("productivity-module-4", "cermet", 6) util.add_ingredient("productivity-module-4", "cermet", 6)
util.add_ingredient("effectivity-module-4", "cermet", 6) util.add_ingredient("efficiency-module-4", "cermet", 6)
end end
-- Various assemblers -- Various assemblers