Skip to content

Disabling Ore Generation | Ore Tweaker 3

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

Disabling Ore Generation using Ore-Tweaker

Introduction

Ore Tweaker provides the option to disable ore generation entirely.

Modded Ores

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

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.

Example:

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

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