
Tag Exclusion
Library & utility for removing entries from tags
Обновлён 25 марта 2026 г. · опубликован 23 января 2026 г.
This library is now obsolete on 26.1+, as Fabric API and Neoforge now both contain ways to remove entries from tag files.
A library & utility to allow removing entries from tags, to avoid having to use "replace": true in datapacks.
Syntax
There is now an abbreviated syntax for tag entries. You can add a ? at the end of an entry to mark it as optional and
a ! at the beginning of an entry to mark it as an exclusion entry.
Exclusion entries will be removed from the tag, including from previous entries in the same tag file and from entries in lower packs.
Example:
{
"values": [
"#minecraft:doors",
// Add all doors
"!minecraft:spruce_door",
// Except the spruce door
"#minecraft:logs",
// Add all logs
"!#minecraft:logs_that_burn",
// But not the ones that burn
"create:brass_casing?",
// Add create brass casing, if it's installed
"!#enderscape:veiled_logs?"
// Remove enderscape veiled logs, if it's installed
]
}
The standard expanded format is also extended.
{
"values": [
"#minecraft:logs",
{
"id": "#minecraft:logs_that_burn",
"tagex:exclude": true
}
]
}
Depending on Tag Exclusion
Currently, it is recommended to use JitPack to add the mod in Gradle and to jar-in-jar it.
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
modImplementation include("com.github.ThePotatoArchivist:TagExclusion:${project.tagex_version}")
}
Note: For some reason, JitPack cannot have + in version names, so when specifying the version in Gradle you must use
- instead, e.g. 1.0.0-mc1.21.11. The version in the mod metadata still uses +, only the maven version uses -.
Data Generation
To add tag exclusions in data generation, use the extension methods to TagAppender.
valueLookupBuilder(ItemTags.ANVIL)
.tagex_exclude(Items.CHIPPED_ANVIL);
valueLookupBuilder(ItemTags.LOGS_THAT_BURN)
.tagex_forceExcludeTag(ItemTags.DARK_OAK_LOGS);
If you're using Kotlin, there are also extension functions that don't have tagex_ in the name.
with (valueLookupBuilder(ItemTags.ANVIL)) {
exclude(Items.CHIPPED_ANVIL)
}
To avoid messing with datagen when it's not supposed to, datagen will only produce tag entries in abbreviated form if
the generating mod has specified its mod id for datagen and declares a hard dependency on tagex.
In build.gradle:
fabricApi {
configureDataGeneration {
// ...
modId = "testmod"
}
}
You may need to regenerate your IDE run configurations.
In fabric.mod.json:
{
// ...
"depends": {
// ...
"tagex": "^1.0.0"
}
}
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 1.1.1+mc26.1 | Релиз | 26.1, 26.1.1, 26.1.2 | fabric | 25 марта 2026 г. | .jar (38 КБ) |
| 1.1.0+mc1.21.1 | Бета | 1.21, 1.21.1 | fabric | 24 февраля 2026 г. | .jar (25 КБ) |
| 1.1.0+mc1.21.11 | Релиз | 1.21.11 | fabric | 3 февраля 2026 г. | .jar (20 КБ) |
Ченджлог
1.1.1+mc26.1Релиз26.1, 26.1.1, 26.1.2 · 25 марта 2026 г.
- Port to 26.1
- Fix datagen bug where adding an excluded optional element would actually create an excluded optional tag
1.1.0+mc1.21.1Бета1.21, 1.21.1 · 24 февраля 2026 г.
- Backport to 1.21.1
- Implementation is a little messier than 1.21.11 so releasing as a beta in case of bugs or incompat
1.1.0+mc1.21.11Релиз1.21.11 · 3 февраля 2026 г.
Initial release
Note: Contains some breaking api changes from 1.0.0. Since the library was not published until now and the code only gets called in datagen this should hopefully not affect anyone.
Полная история изменений — на Modrinth.
Комментарии
Загружаем…
