Fix: translations not working sometimes

This commit is contained in:
Linnea Gräf
2024-11-09 22:41:05 +01:00
parent d77c34f881
commit 4d0a73030d
2 changed files with 2 additions and 2 deletions

View File

@@ -45,6 +45,6 @@ class SBCraftingRecipeRenderer : GenericRecipeRenderer<NEUCraftingRecipe> {
}
override val icon: ItemStack = ItemStack(Blocks.CRAFTING_TABLE)
override val title: Text = tr("firmament.category.crafting", "SkyBlock Crafting")
override val title: Text = tr("firmament.category.crafting", "SkyBlock Crafting") // TODO: fix tr not being included in jars
override val identifier: Identifier = Firmament.identifier("crafting_recipe")
}