-
-
Notifications
You must be signed in to change notification settings - Fork 7
Disabling Ore Generation | Ore Tweaker 2
Ore Tweaker has the option to let you disable ores from spawning at all.
Ore Tweaker works with some mods that use the standard vanilla Minecraft ore generation like Thermal Expansion. Mods that use their own custom generation can not be disabled by default.
Most mods allow you to disable their world-gen in their own config files so if you can do it, it is probably easier to do it there than using Ore-Tweaker.
Disabling ore-generation is fairly easy and can be done by setting the values to -1
in the ores json file you wish to disable.
The example below will completely remove all iron and coal ores from spawning.
{
"oreConfig": [
{
"ore": "minecraft:iron_ore",
"minY": -1,
"maxY": -1,
"maxVeinSize": -1,
"spawnRate": -1,
"biomeBlacklist": [],
"biomeWhitelist": []
}
]
}
if you wish to disable all vanilla ores you can simply delete all the files inside the ../config/oretweaker/data/
folder and move the remove_everything.json
from the template folder to the data folder.
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.