diff options
author | Linnea Gräf <nea@nea.moe> | 2024-01-21 14:06:34 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-01-21 14:06:34 +0100 |
commit | 3e1f75e32253bca3312f478a60d315bec37bc112 (patch) | |
tree | 14260e41bd2d8669d6d3ffa9a9a30d1d9ee2fe6c /src/main/kotlin/moe/nea/firmament/repo | |
parent | 18ebd21cb0f97dea8367e65002e0bf32e5c686e2 (diff) | |
download | firmament-3e1f75e32253bca3312f478a60d315bec37bc112.tar.gz firmament-3e1f75e32253bca3312f478a60d315bec37bc112.tar.bz2 firmament-3e1f75e32253bca3312f478a60d315bec37bc112.zip |
Bump to 1.20.4
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/repo')
-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) ) ) ) |