From 696ce4cd052b8f18cd81dcc1c28f5a009278c939 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 25 Dec 2025 20:52:13 +0100 Subject: [PATCH] Fix outdated recipe names for thermofluid --- Nylon2/recipe-modify.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Nylon2/recipe-modify.lua b/Nylon2/recipe-modify.lua index f6ab143..c86f576 100644 --- a/Nylon2/recipe-modify.lua +++ b/Nylon2/recipe-modify.lua @@ -26,8 +26,10 @@ if mods["space-exploration"] then util.add_ingredient("se-chemical-gel","povidone", 2) util.remove_ingredient("se-chemical-gel","toluene") if mods["Krastorio2"] then - util.add_ingredient("se-space-coolant","ethylene-glycol", 5) - util.remove_ingredient("se-space-coolant","salt") + util.add_ingredient("se-space-coolant-hot","ethylene-glycol", 5) + util.remove_ingredient("se-space-coolant-hot","salt") + util.add_ingredient("se-space-coolant-hot-cryonite","ethylene-glycol", 5) + util.remove_ingredient("se-space-coolant-hot-cryonite","salt") util.add_unlock("se-space-radiator-1","ethylene-glycol") end end