Minecraft Version: 1.21.4 Pack Format: 61 Purpose: Disables Ancient Debris generation in the Nether
This datapack completely prevents Ancient Debris (Netherite ore) from generating in newly created Nether chunks. It works by overriding the vanilla placed features that control where and how Ancient Debris spawns.
netherite_blocker/
├── pack.mcmeta # Datapack metadata
├── data/minecraft/worldgen/placed_feature/
│ ├── ore_ancient_debris_large.json # Disables large Ancient Debris clusters
│ └── ore_debris_small.json # Disables small Ancient Debris clusters
Locate your world folder:
%APPDATA%\.minecraft\saves\[World Name]~/Library/Application Support/minecraft/saves/[World Name]~/.minecraft/saves/[World Name]Copy the datapack:
netherite_blocker folderdatapacks directoryEnable the datapack:
/datapack enable "file/netherite_blocker"/reloadThe datapack overrides two vanilla placed features:
minecraft:ore_ancient_debris_large - Large Ancient Debris clustersminecraft:ore_ancient_debris_small - Small Ancient Debris clustersEach override sets the minecraft:count placement modifier to 0, effectively preventing any instances of the feature from being placed in new chunks.
{
"feature": "minecraft:ore_ancient_debris_large",
"placement": [
{
"type": "minecraft:count",
"count": 0
},
// ... other placement modifiers
]
}
"Missing metadata" Error:
pack.mcmeta exists at the root of your datapack"No key feature" Error:
feature fieldAncient Debris Still Spawning:
/datapack list/reload to refresh datapack stateTo remove the datapack:
Command Method:
/datapack disable "file/netherite_blocker"
Manual Method:
netherite_blocker folder from your world's datapacks directory/reload| Command | Description |
|---|---|
/datapack list | List all loaded datapacks |
/datapack enable "file/netherite_blocker" | Enable this datapack |
/datapack disable "file/netherite_blocker" | Disable this datapack |
/reload | Reload all datapacks |
/datapack info | Get detailed datapack information |
For server administrators:
After installation:
Created: November 2025 Version: 1.0 Minecraft: 1.21.4 Author: AlanTheDev Website: https://modrinth.com/user/AlanTheDev
This datapack completely prevents Ancient Debris (Netherite ore) from generating in newly created Nether chunks. It works by overriding the vanilla placed features that control where and how Ancient Debris spawns.