Compatibility
Minecraft: Java Edition
1.18.2
Platforms
Supported environments
Links
Creators
Details
Licensed MIT
Published 3 years ago
Updated 3 years ago
Clean Slate
Wipe the slate clean and develop your modpack from the ground up.
This mod allows for filtering data from datapacks by namespace and reloader.
Configuration
The config file should be at .minecraft/config/clean_slate.json.
Here's a template that will prevent all recipes and advancements in Minecraft's namespace from loading.
{
"filters": {
"recipes": {
"type": "blacklist",
"namespaces": [ "minecraft" ]
},
"advancements": {
"type": "blacklist",
"namespaces": [ "minecraft" ]
}
}
}
This supports any JSON reloader. In vanilla this includes:
advancementsrecipesitem_modifiersloot_tablespredicates
and on Forge, loot_modifiers as well.
Mods also often add their own reloaders.


