diff --git a/changelog.txt b/changelog.txt index 062de744..82640de7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 3.0.2 +Date: idk + Changes: + - Fixed coalbed recipes requiring 500 degree pressurized water +--------------------------------------------------------------------------------------------------- Version: 3.0.1 Date: 2024-10-21 Changes: diff --git a/prototypes/recipes/coalbed-recipes.lua b/prototypes/recipes/coalbed-recipes.lua index 3247eaf3..b0f0d37b 100644 --- a/prototypes/recipes/coalbed-recipes.lua +++ b/prototypes/recipes/coalbed-recipes.lua @@ -5,7 +5,7 @@ RECIPE { enabled = false, energy_required = 15, ingredients = { - {type = "fluid", name = "pressured-water", amount = 2500, minimum_temperature = 500}, + {type = "fluid", name = "pressured-water", amount = 2500}, {type = "fluid", name = mods.pyrawores and "oxygen" or "hot-air", amount = 500}, {type = "item", name = "drill-head", amount = 1}, }, @@ -25,7 +25,7 @@ RECIPE { enabled = false, energy_required = 12, ingredients = { - {type = "fluid", name = "pressured-water", amount = 2500, minimum_temperature = 500}, + {type = "fluid", name = "pressured-water", amount = 2500}, {type = "fluid", name = mods.pyrawores and "oxygen" or "hot-air", amount = 500}, {type = "item", name = "filtration-media", amount = 2}, }, @@ -45,7 +45,7 @@ RECIPE { enabled = false, energy_required = 12, ingredients = { - {type = "fluid", name = "pressured-water", amount = 2500, minimum_temperature = 500}, + {type = "fluid", name = "pressured-water", amount = 2500}, {type = "fluid", name = mods.pyrawores and "oxygen" or "hot-air", amount = 500}, {type = "item", name = "drill-head", amount = 1}, {type = "item", name = "filtration-media", amount = 2},