From 60b768e736bae5c64eb97453f046b5cefc0e2a4e Mon Sep 17 00:00:00 2001 From: przemo1232 <79700515+przemo1232@users.noreply.github.com> Date: Sat, 7 Sep 2024 23:14:44 +0200 Subject: [PATCH] no more free water --- changelog.txt | 5 +++++ prototypes/fluids/liquid-rich-gas.lua | 2 +- prototypes/fluids/purier-helium.lua | 2 +- prototypes/recipes/recipes.lua | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index 3417389..92cbcca 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 2.0.15 +Date: in 5 hours + Changes: + - fixed some recipes outputting more steam than input water when using productivity modules +--------------------------------------------------------------------------------------------------- Version: 2.0.14 Date: 2024-6-3 Changes: diff --git a/prototypes/fluids/liquid-rich-gas.lua b/prototypes/fluids/liquid-rich-gas.lua index bf7210b..b969c59 100644 --- a/prototypes/fluids/liquid-rich-gas.lua +++ b/prototypes/fluids/liquid-rich-gas.lua @@ -10,7 +10,7 @@ RECIPE { {type = "fluid", name = "gasoline", amount = 5} }, results = { - {type = "fluid", name = "steam", amount = 100, temperature = 150}, + {type = "fluid", name = "steam", amount = 100, temperature = 150, catalyst_amount = 100}, {type = "fluid", name = "liquid-rich-gas", amount = 4} }, main_product= "liquid-rich-gas", diff --git a/prototypes/fluids/purier-helium.lua b/prototypes/fluids/purier-helium.lua index 3b0fff2..e82c20b 100644 --- a/prototypes/fluids/purier-helium.lua +++ b/prototypes/fluids/purier-helium.lua @@ -10,7 +10,7 @@ RECIPE { {type = "fluid", name = "gasoline", amount = 5} }, results = { - {type = "fluid", name = "steam", amount = 100, temperature = 150}, + {type = "fluid", name = "steam", amount = 100, temperature = 150, catalyst_amount = 100}, {type = "fluid", name = "purier-helium", amount = 2} }, main_product = "purier-helium" diff --git a/prototypes/recipes/recipes.lua b/prototypes/recipes/recipes.lua index d23180f..e513e1c 100644 --- a/prototypes/recipes/recipes.lua +++ b/prototypes/recipes/recipes.lua @@ -799,7 +799,7 @@ RECIPE { }, results = { {type = "fluid", name = "liquid-petgas", amount = 5}, - {type = "fluid", name = "steam", amount = 100, temperature = 150} + {type = "fluid", name = "steam", amount = 100, temperature = 150, catalyst_amount = 100} }, main_product= "liquid-petgas", }