-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Description
The pressing recipe for zinc sheet in Create Deco uses a direct item reference instead of a forge tag, which causes incompatibility with other mods that also add zinc sheets.
Specifically:
The recipe uses create:zinc_ingot as input
Outputs createdeco:zinc_sheet
Meanwhile, other mods (e.g. Power Grid) use:
forge:ingots/zinc as input
Their own zinc sheet item as output
This leads to:
- Multiple incompatible zinc sheet items
- Recipes not recognizing equivalent items from other mods
- Reduced mod interoperability
Suggested fix:
Update the recipe to use tags instead of direct item references:
{
"type": "create:pressing",
"ingredients": [
{
"tag": "forge:ingots/zinc"
}
],
"results": [
{
"item": "createdeco:zinc_sheet"
}
]
}
Additionally, consider adding:
forge:plates/zinc
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels