Conveniented Forge Tags
This simple Minecraft mod for Fabric/Quilt 1.18.2 ensures synchronization between two tag systems: ForgeTags and Conventional Tags.
Why is this needed?
When using Create Fabric and other mods that work with ForgeTags alongside major native Fabric modifications, compatibility issues may arise. Different tag systems don't interact with each other, preventing items from one mod from being used in another mod's recipes. This modification solves this problem.
Built-in merge rules
Ingots
Double Ingots
Plates
Dusts
Small Dusts
Tiny Dusts
Nuggets
Rods
Wires
Coins
Gears
Dyes
Seeds
Ores
Storage Blocks
Raw Ores
Practical example
Let's consider zinc ingots. In the ForgeTags system, they are designated as #c:ingots/zinc, while in conventional tags they are #c:zinc_ingots.
Before applying the mod
// #c:zinc_ingots
{
"techreborn:zinc_ingot",
"another_tech_mod:zinc_ingot"
}
// #c:ingots/zinc
{
"create:zinc_ingot",
"alphamode:zinc_ingot"
}
After applying the mod
// #c:zinc_ingots
{
"techreborn:zinc_ingot",
"another_tech_mod:zinc_ingot",
"create:zinc_ingot",
"alphamode:zinc_ingot"
}
// #c:ingots/zinc
{
"techreborn:zinc_ingot",
"another_tech_mod:zinc_ingot",
"create:zinc_ingot",
"alphamode:zinc_ingot"
}