Skip to content

Commit

Permalink
balance: Fixed wrong steam -> water ratio in the electric boiler reci…
Browse files Browse the repository at this point in the history
…pe. Flipped from 10:1 to 1:10
  • Loading branch information
notnotmelon committed Dec 12, 2024
1 parent 134bba4 commit 92c5d2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prototypes/recipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ data:extend {{
type = "recipe",
name = "maraxsis-electric-boiler",
ingredients = {
{type = "fluid", name = "water", amount = 100},
{type = "fluid", name = "water", amount = 10},
},
results = {
{type = "fluid", name = "steam", amount = 10, temperature = 100},
{type = "fluid", name = "steam", amount = 90, temperature = 100},
},
allow_productivity = false,
allow_decomposition = false,
category = "maraxsis-hydro-plant",
energy_required = 1,
energy_required = 10,
surface_conditions = {{
property = "pressure",
max = 0.1,
Expand Down

0 comments on commit 92c5d2b

Please sign in to comment.