Skip to content

Disabling Ore Generation | Ore Tweaker 2

Eivind Norling edited this page May 1, 2023 · 1 revision

Disabling Ore Generation using Ore-Tweaker

Intro

Ore Tweaker has the option to let you disable ores from spawning at all.

Modded Ores

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

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.

Example:

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": []
    }
  ]
}

Disable everything

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.

Wiki Pages


Intro


Information

Ore Tweaker 2

Ore Tweaker 3


Configuring

Ore Tweaker 2

Ore Tweaker 3


Debugging


Supported Versions

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.

Clone this wiki locally