Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Date: ????
- Updated Simplified Chinese locale courtesy of @alone on Discord
- Add compatibility with AAI Signal Transmission. Now researched after
logistics science and uses contemporary ingredients
- Recipe signals are now sorted into their own item-group in the crafting tab
---------------------------------------------------------------------------------------------------
Version: 3.0.39
Date: 2025-09-15
Expand Down
1 change: 1 addition & 0 deletions data-final-fixes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ if create_signal_mode then
end
end
end
recipe.subgroup = "py-recipes"
recipe.hide_from_signal_gui = false
end
end
Expand Down
1 change: 1 addition & 0 deletions data.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
require("prototypes.item-groups")
require("prototypes.custom-input")
-- Log all mods & versions, Alien Biomes already does this so we skip if it is active
if not mods["alien-biomes"] then
Expand Down
3 changes: 3 additions & 0 deletions locale/en/locale.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,6 @@ recipe-amount=(__1__ ×) __2__

[modifier-description]
change-recipe-productivity=__1__ productivity: __2__

[item-group-name]
py-postprocessing=Py Postprocessing
20 changes: 20 additions & 0 deletions prototypes/item-groups.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
local create_signal_mode = settings.startup["pypp-extended-recipe-signals"].value

if create_signal_mode then
data:extend {
{
type = "item-group",
name = "py-postprocessing",
order = "v",
inventory_order = "v",
icon = "__pycoalprocessinggraphics__/graphics/icons/automated-factory-mk01.png",
icon_size = 64
},
{
type = "item-subgroup",
name = "py-recipes",
group = "py-postprocessing",
order = "a-a"
},
}
end