Skip to content

Commit

Permalink
The selector combinator is now craftable at logistics science.
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Oct 21, 2024
1 parent 905fc6a commit ec753ba
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 3.0.2
Date: 2024-10-21
Changes:
- The selector combinator is now craftable at logistics science. (previously chemical science)
---------------------------------------------------------------------------------------------------
Version: 3.0.1
Date: 2024-10-21
Changes:
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pycoalprocessing",
"version": "3.0.1",
"version": "3.0.2",
"factorio_version": "2.0",
"title": "Pyanodons Coal Processing",
"author": "Pyanodon, Nexela, Kingarthur, notnotmelon, Mootykins, ShadowGlass, Archezekiel, Quintuple",
Expand Down
12 changes: 11 additions & 1 deletion prototypes/updates/base-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,14 @@ table.insert(tech_that_unlocks_fluid_mining.effects, {
modifier = true
})

data.raw.recipe["engine-unit"].category = "crafting"
data.raw.recipe["engine-unit"].category = "crafting"

RECIPE("selector-combinator"):remove_ingredient("advanced-circuit"):add_ingredient {"electronic-circuit", 5}
TECHNOLOGY("advanced-combinators").unit.ingredients = {
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
}
TECHNOLOGY("advanced-combinators").prerequisites = mods.pyrawores and {"circuit-network", "solder-mk02"} or {"circuit-network"}
if mods.pyrawores then
RECIPE("selector-combinator"):add_ingredient {type = "fluid", name = "molten-solder", amount = 10}.category = "crafting-with-fluid"
end

0 comments on commit ec753ba

Please sign in to comment.