From feaa585cec658adbf84b07ea6d48a891f4a50b67 Mon Sep 17 00:00:00 2001 From: Kli Kli Date: Fri, 9 Aug 2024 16:38:32 +0200 Subject: [PATCH] fix: add missing translations --- src/generated/resources/assets/occultism/lang/en_us.json | 1 + .../java/com/klikli_dev/occultism/datagen/lang/ENUSProvider.java | 1 + 2 files changed, 2 insertions(+) diff --git a/src/generated/resources/assets/occultism/lang/en_us.json b/src/generated/resources/assets/occultism/lang/en_us.json index 647973d77..22054442f 100644 --- a/src/generated/resources/assets/occultism/lang/en_us.json +++ b/src/generated/resources/assets/occultism/lang/en_us.json @@ -963,6 +963,7 @@ "item.minecraft.diamond_sword.occultism_spirit_tooltip": "%s is bound to this sword. May your foes tremor before its glory.", "item.occultism.afrit_essence": "Afrit Essence", "item.occultism.awakened_feather": "Awakened Feather", + "item.occultism.beaver_nugget": "Beaver Nugget", "item.occultism.book_of_binding_afrit": "Book of Binding: Afrit", "item.occultism.book_of_binding_afrit.tooltip": "This book has not been bound to an afrit yet.", "item.occultism.book_of_binding_bound_afrit": "Book of Binding: Afrit (Bound)", diff --git a/src/main/java/com/klikli_dev/occultism/datagen/lang/ENUSProvider.java b/src/main/java/com/klikli_dev/occultism/datagen/lang/ENUSProvider.java index 886edb7d0..c70409bd8 100644 --- a/src/main/java/com/klikli_dev/occultism/datagen/lang/ENUSProvider.java +++ b/src/main/java/com/klikli_dev/occultism/datagen/lang/ENUSProvider.java @@ -186,6 +186,7 @@ private void addItems() { this.addAutoTooltip(OccultismItems.DEMONS_DREAM_ESSENCE.get(), "Consumption allows to see beyond the veil ... and a whole lot of other effects."); this.addItem(OccultismItems.OTHERWORLD_ESSENCE, "Otherworld Essence"); this.addAutoTooltip(OccultismItems.OTHERWORLD_ESSENCE.get(), "Purified Demon's Dream Essence, no longer provides any of the negative effects."); + this.addItem(OccultismItems.BEAVER_NUGGET, "Beaver Nugget"); this.addItem(OccultismItems.SPIRIT_ATTUNED_GEM, "Spirit Attuned Gem"); this.add("item.occultism.otherworld_sapling", "Otherworld Sapling"); this.add("item.occultism.otherworld_sapling_natural", "Unstable Otherworld Sapling");