Skip to content

Commit

Permalink
AdornReiClient: Fix tag translation keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Aug 20, 2024
1 parent 890e652 commit d41386e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void registerCollapsibleEntries(CollapsibleEntryRegistry registry) {

private static void add(CollapsibleEntryRegistry registry, TagKey<Item> tag) {
// matches the translation keys used by EMI as well
var name = Text.translatable(Util.createTranslationKey("tag", tag.id()));
var name = Text.translatable(Util.createTranslationKey("tag.item", tag.id()));
registry.group(tag.id(), name, EntryIngredients.ofItemTag(tag));
}

Expand Down

0 comments on commit d41386e

Please sign in to comment.