Fzzy Config

Validated TagKeys

FzzyConfig can automatically validate TagKeys from any registry. Validated Tags also provide suggestions to the user.

// Validated tags accept a predicate that can be used to filter a tag further. This example allows any tag except `minecraft:burnable_logs`
public ValidatedTagKey<Item> validatedTag = ValidatedTagKey(ItemTags.AXES, id -> id != Identifier.of("burnable_logs"));