Skip to content

Commit

Permalink
fix more stdlib bullshit
Browse files Browse the repository at this point in the history
  • Loading branch information
przemo1232 committed Oct 26, 2024
1 parent 5fa54f9 commit 0e6f6de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 3 additions & 3 deletions prototypes/recipes/coalbed-recipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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},
},
Expand All @@ -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},
},
Expand All @@ -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},
Expand Down

0 comments on commit 0e6f6de

Please sign in to comment.