Skip to content

Inconsistent zinc sheet recipe uses item instead of forge tag #257

@QuickPurpleFox

Description

@QuickPurpleFox

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions