Compare commits

..

No commits in common. "a607118e44c9bfa45b120a15bad945e0a379c32e" and "f0061c6a7f8d599b0d14499ab346f6a8e0f9d99e" have entirely different histories.

3 changed files with 2 additions and 16 deletions

View file

@ -1,10 +1,4 @@
---------------------------------------------------------------------------------------------------
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.3",
"version": "2.0.2",
"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,14 +102,6 @@ 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}})