Skip to content

Commit

Permalink
compat: Added compat with upcycler. Resolves #33
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Dec 5, 2024
1 parent df7cd77 commit 7c2cfd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prototypes/hydro-plant.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ data:extend {{
ingredients = {
{type = "item", name = "tungsten-plate", amount = 35},
{type = "item", name = "pipe", amount = 30},
{type = "item", name = "quality-module-3", amount = 4},
{type = "fluid", name = "maraxsis-saline-water", amount = 300},
{type = "item", name = mods.upcycler and "speed-module-3" or "quality-module-3", amount = 4},
},
results = {
{type = "item", name = "maraxsis-hydro-plant", amount = 1},
Expand Down
2 changes: 1 addition & 1 deletion prototypes/technology.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data:extend {{
prerequisites = {
"advanced-asteroid-processing",
"rocket-turret",
"quality-module-3",
mods.upcycler and "speed-module-3" or "quality-module-3",
},
unit = {
count = 3000,
Expand Down

0 comments on commit 7c2cfd2

Please sign in to comment.