-
-
Notifications
You must be signed in to change notification settings - Fork 7
Disabling Ore Generation | Ore Tweaker 3
Ore Tweaker provides the option to disable ore generation entirely.
Ore Tweaker is compatible with mods that utilize the standard vanilla Minecraft ore generation, such as Thermal Expansion. However, mods that use their own custom generation cannot be disabled by default.
Most mods allow you to disable their world generation in their own config files. If possible, it is usually easier to disable ore generation there rather than using Ore Tweaker.
Disabling ore generation is straightforward and can be done by setting the appropriate values to -1
in the JSON file for the ores you wish to disable.
The following example demonstrates how to completely disable iron and coal ores from spawning.
{
"oreConfig": [
{
"ore": "minecraft:iron_ore",
"minY": -1,
"maxY": -1,
"maxVeinSize": -1,
"spawnRate": -1,
"biomeFilters": {
"biomeBlacklist": [],
"biomeWhitelist": []
}
}
]
}
Made by Ewy - License MIT
Version | Supported |
---|---|
1.18.x-3.0.x | ✔️ |
1.17.x-2.6.x | ✔️ |
1.16.5-2.6.x | ✔️ |
1.12.x-1.x.x | ❌ |
1.11.x-1.x.x | ❌ |
1.10.x-1.x.x | ❌ |
1.9.x-1.x.x | ❌ |
1.8.x-1.x.x | ❌ |
1.7.x-1.x.x | ❌ |
Versions marked with ❌ is no longer supported. Help to configure these version will not be provided.