Skip to content

Commit

Permalink
Format Code
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Sep 7, 2024
1 parent e12963f commit 94f1e0e
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions SeaBlock/data-updates/unobtainable-items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,12 @@ bobmods.lib.tech.remove_recipe_unlock(seablock.final_scripted_tech, "steam-inser

-- Hide Liquid Fuel
if data.raw.recipe["enriched-fuel-from-liquid-fuel"] then
bobmods.lib.recipe.set_ingredients("enriched-fuel-from-liquid-fuel",
{
{ type = "fluid", name = "liquid-fuel-oil", amount = 80 },
{ type = "fluid", name = "gas-residual", amount = 20 },
}
)
data.raw.recipe["enriched-fuel-from-liquid-fuel"].icons = angelsmods.functions.create_solid_recipe_icon(
{ "liquid-fuel-oil", "gas-residual" },
"enriched-fuel"
)
bobmods.lib.recipe.set_ingredients("enriched-fuel-from-liquid-fuel", {
{ type = "fluid", name = "liquid-fuel-oil", amount = 80 },
{ type = "fluid", name = "gas-residual", amount = 20 },
})
data.raw.recipe["enriched-fuel-from-liquid-fuel"].icons =
angelsmods.functions.create_solid_recipe_icon({ "liquid-fuel-oil", "gas-residual" }, "enriched-fuel")
end
bobmods.lib.tech.remove_recipe_unlock("fluid-canister-processing", "empty-liquid-fuel-barrel")
bobmods.lib.tech.remove_recipe_unlock("fluid-canister-processing", "fill-liquid-fuel-barrel")
Expand Down

0 comments on commit 94f1e0e

Please sign in to comment.