diff options
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/repo/ItemCache.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/repo/ItemCache.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/repo/ItemCache.kt b/src/main/kotlin/moe/nea/firmament/repo/ItemCache.kt index f6ae2aa..0688497 100644 --- a/src/main/kotlin/moe/nea/firmament/repo/ItemCache.kt +++ b/src/main/kotlin/moe/nea/firmament/repo/ItemCache.kt @@ -116,8 +116,8 @@ object ItemCache : IReloadable { lore.forEach { newLore.add( NbtString.of( - Text.Serializer.toJson( - Text.Serializer.fromJson(it.asString())!!.applyLoreReplacements(loreReplacements) + Text.Serialization.toJsonString( + Text.Serialization.fromJson(it.asString())!!.applyLoreReplacements(loreReplacements) ) ) ) |