Skip to content

Commit

Permalink
Tidy up hand crafting
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Dec 12, 2023
1 parent f164d7c commit f142ce0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion SeaBlock/data-updates/algae.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ bobmods.lib.recipe.set_category("alien-bacteria", "bio-processing-3")
bobmods.lib.recipe.set_category("solid-alginic-acid", "crafting")

-- Fix handcrafting trying to use wrong crafting path
data.raw.recipe["cellulose-fiber-algae"].allow_as_intermediate = false
data.raw.recipe["cellulose-fiber-raw-wood"].allow_as_intermediate = false

-- Speed up algae->cellulose fiber crafting
Expand Down
2 changes: 2 additions & 0 deletions SeaBlock/data-updates/coal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ end
-- Disable coal cracking technology
seablock.lib.hide_technology("angels-coal-cracking")
seablock.lib.moveeffect("pellet-coke", "angels-coal-cracking", "angels-coal-processing-2")
angelsmods.functions.move_item("pellet-coke", "bio-processing-wood", "f[pellet-coke]")
angelsmods.functions.move_item("pellet-coke", "bio-processing-wood", "f[pellet-coke]", "recipe")

-- Clear fuel value so these don't appear in Helmod's fuel picker
data.raw.item["carbon"].fuel_emissions_multiplier = nil
Expand Down
2 changes: 1 addition & 1 deletion SeaBlock/prototypes/recipe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data:extend({
ingredients = { { "wood-bricks", 1 } },
result = "wood-charcoal",
result_count = 5,
subgroup = "petrochem-coal",
subgroup = "bio-processing-wood",
},
{
type = "recipe",
Expand Down

0 comments on commit f142ce0

Please sign in to comment.