-
Notifications
You must be signed in to change notification settings - Fork 20
Unification Config
Relentless edited this page Oct 19, 2022
·
9 revisions
The unify config can be used to configure the unification process.
Location: config/almostunified/unify.json
If you don't find the config, make sure you already loaded a world once.
| Key | Description | Example |
|---|---|---|
| modPriorities | List of mods to define a priority for the items to choose from. | ["minecraft", "kubejs", "crafttweaker", "create", "thermal", "immersiveengineering", "mekanism"] |
| stoneStrata | List of stone types which are used to filter out different stone types in recipe results. | ["nether", "deepslate", "granite", "diorite", "andesite"] |
| tags | List of tags that should be used for unification. Using {material} inside a tag will work as a placeholder for all materials. |
["forge:nuggets/{material}", "forge:ingots/{material}", "silicon"] |
| materials | List of the materials to unify. | ["iron", "gold", "emerald", "bronze"] |
| priorityOverrides | Override the priority mod for a specific tag. | {"forge:ingots/tin": "mekanism"} |
| ignoredTags | List of tags to ignore for unification. Placeholders like {material} can't be used here. | ["forge:nuggets/copper"] |
| ignoredRecipeTypes | List of recipe types to ignore for unification. | ["minecraft:smelting"] |
| ignoredRecipes | List of recipe ids to ignore for unification. | ["minecraft:iron_ingot_from_blasting"] |
| hideJeiRei | Hide all items in JEI or REI which were replaced through unification. | true or false |