diff --git a/eco-core/core-plugin/src/main/kotlin/com/willfp/ecopets/pets/Pet.kt b/eco-core/core-plugin/src/main/kotlin/com/willfp/ecopets/pets/Pet.kt index 8e3c7ee..b4a3b14 100644 --- a/eco-core/core-plugin/src/main/kotlin/com/willfp/ecopets/pets/Pet.kt +++ b/eco-core/core-plugin/src/main/kotlin/com/willfp/ecopets/pets/Pet.kt @@ -386,12 +386,12 @@ class Pet( return ItemStackBuilder(base) .setDisplayName( - plugin.configYml.getFormattedString("gui.pet-info.active.${prefix}lore") + plugin.configYml.getFormattedString("gui.pet-info.name") .replace("%level%", player.getPetLevel(this).toString()) .replace("%pet%", this.name) ) .addLoreLines { - injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-info.active.lore"), player) + injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-info.${prefix}lore"), player) } .build() }