Compare commits

..

2 commits

Author SHA1 Message Date
Simon Brodtmann
a607118e44 2.0.3 2025-11-05 10:09:50 +01:00
pla
0f0c52e789
K2 mineral water change 2025-11-04 20:55:51 +01:00
3 changed files with 16 additions and 2 deletions

View file

@ -1,4 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 2.0.3
Date: 05.11.2025
Bug Fixes:
- Fix K2 matter integration (thanks pla)
- Fixes after breaking change for mineral water in K2 (pla)
---------------------------------------------------------------------------------------------------
Version: 2.0.2
Date: 02.11.2025
Bug Fixes:

View file

@ -1,6 +1,6 @@
{
"name": "bztungsten2",
"version": "2.0.2",
"version": "2.0.3",
"factorio_version": "2.0",
"title": "Tungsten",
"description": "Adds tungsten ore (wolframite), tungsten plates, tungsten carbide and rocket engine nozzles to the base game.",

View file

@ -1,4 +1,4 @@
local util = require("data-util");
local util = require("data-util")
local cuw = "tungsten-plate"
if util.me.cuw() then cuw = "cuw" end
@ -102,6 +102,14 @@ util.add_ingredient("deadlock-floor-lamp", "tungsten-plate", 2)
---- K2
if mods["Krastorio2"] then
util.remove_prerequisite("kr-mineral-water-gathering", "chemical-science-pack")
util.add_prerequisite("kr-mineral-water-gathering", "kr-fluids-chemistry")
util.add_prerequisite("kr-mineral-water-gathering", "logistic-science-pack")
util.set_tech_recipe(
"kr-mineral-water-gathering",
{ { "kr-basic-tech-card", 1 }, { "automation-science-pack", 1 }, { "logistic-science-pack", 1 } }
)
util.set_tech_recipe("engine", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
util.set_tech_recipe("fluid-handling", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
util.set_tech_recipe("lamp", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})