Skip to content

Commit

Permalink
Update catalyst recipes #189
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Aug 12, 2024
1 parent 89b3a44 commit 521dddd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions boblibrary/auto-bottle.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ local function create_fill_gas_bottle_recipe(fluid)
enabled = false,
icons = generate_fill_gas_bottle_icons(fluid),
ingredients = {
{ type = "fluid", name = fluid.name, amount = 50 },
{ type = "item", name = "gas-canister", amount = 1 },
{ type = "fluid", name = fluid.name, amount = 50, ignored_by_stats = 50 },
{ type = "item", name = "gas-canister", amount = 1, ignored_by_stats = 1 },
},
results = {
{ type = "item", name = fluid.name .. "-barrel", amount = 1 },
Expand All @@ -150,8 +150,8 @@ local function create_fill_fluid_canister_recipe(fluid)
enabled = false,
icons = generate_fill_fluid_canister_icons(fluid),
ingredients = {
{ type = "fluid", name = fluid.name, amount = 50 },
{ type = "item", name = "gas-canister", amount = 1 },
{ type = "fluid", name = fluid.name, amount = 50, ignored_by_stats = 50 },
{ type = "item", name = "gas-canister", amount = 1, ignored_by_stats = 1 },
},
results = {
{ type = "item", name = fluid.name .. "-barrel", amount = 1 },
Expand Down Expand Up @@ -182,8 +182,8 @@ local function create_empty_gas_bottle_recipe(fluid)
{ type = "item", name = fluid.name .. "-barrel", amount = 1 },
},
results = {
{ type = "fluid", name = fluid.name, amount = 50 },
{ type = "item", name = "gas-canister", amount = 1 },
{ type = "fluid", name = fluid.name, amount = 50, ignored_by_stats = 50 },
{ type = "item", name = "gas-canister", amount = 1, ignored_by_stats = 1 },
},
allow_decomposition = false,
}
Expand All @@ -208,8 +208,8 @@ local function create_empty_fluid_canister_recipe(fluid)
{ type = "item", name = fluid.name .. "-barrel", amount = 1 },
},
results = {
{ type = "fluid", name = fluid.name, amount = 50 },
{ type = "item", name = "gas-canister", amount = 1 },
{ type = "fluid", name = fluid.name, amount = 50, ignored_by_stats = 50 },
{ type = "item", name = "gas-canister", amount = 1, ignored_by_stats = 1 },
},
allow_decomposition = false,
}
Expand Down

0 comments on commit 521dddd

Please sign in to comment.