Skip to content

Commit

Permalink
Remove Solid Resin #322
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Feb 27, 2024
1 parent 1430021 commit 72bbd47
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 2 additions & 0 deletions SeaBlock/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---------------------------------------------------------------------------------------------------
Version: 0.5.16
Date: ???
Changes:
- Hid solid resin item and recipes #322
Bugfixes:
- Landfill tech not ignoring tech cost multiplier #320
- Milestones error when mod setting Default landfill type set to Landfill #321
Expand Down
9 changes: 7 additions & 2 deletions SeaBlock/data-updates/wood.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ bobmods.lib.tech.add_prerequisite("bio-wood-processing-3", "bio-arboretum-1")
bobmods.lib.tech.remove_recipe_unlock("bio-wood-processing-3", "wood-bricks")
bobmods.lib.tech.add_recipe_unlock("bio-wood-processing-3", "cellulose-fiber-raw-wood")

bobmods.lib.tech.add_recipe_unlock("resins", "bio-resin-wood-reprocessing")
bobmods.lib.tech.add_prerequisite("resins", "bio-farm-1")
-- Remove solid resin
bobmods.lib.recipe.hide("bio-resin-wood-reprocessing")
bobmods.lib.tech.remove_prerequisite("bio-wood-processing-2", "bio-farm-1")
bobmods.lib.tech.remove_recipe_unlock("resins", "solid-resin")
bobmods.lib.recipe.hide("solid-resin")
seablock.lib.hide_item("resin")
bobmods.lib.tech.remove_recipe_unlock("bio-arboretum-temperate-1", "bio-resin-resin-liquification")
bobmods.lib.recipe.hide("bio-resin-resin-liquification")
2 changes: 1 addition & 1 deletion SeaBlock/remote.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ local function milestones_presets()
{ type = "item", name = "nitinol-alloy", quantity = 1 },

{ type = "item", name = "plastic-bar", quantity = 1 },
{ type = "item", name = "resin", quantity = 1 },
{ type = "fluid", name = "liquid-resin", quantity = 100 },
{ type = "item", name = "rubber", quantity = 1 },
{ type = "item", name = "alien-bacteria", quantity = 1 },
{ type = "item", name = "sulfur", quantity = 1 },
Expand Down

0 comments on commit 72bbd47

Please sign in to comment.