diff options
author | Linnea Gräf <nea@nea.moe> | 2025-06-08 00:11:14 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-06-08 00:11:14 +0200 |
commit | 5eb4bc7f2473f827cce6cb7dbb263460f7d8d4f4 (patch) | |
tree | 1f4f213032a0126cac54dca6d04b9bc97ab1ca26 /src | |
parent | 576dd477bb79d8c0953ae9ef04f879efb36e2d4b (diff) | |
download | Firmament-5eb4bc7f2473f827cce6cb7dbb263460f7d8d4f4.tar.gz Firmament-5eb4bc7f2473f827cce6cb7dbb263460f7d8d4f4.tar.bz2 Firmament-5eb4bc7f2473f827cce6cb7dbb263460f7d8d4f4.zip |
fix: inconsistency between neu item id and nbt item id for some logs
Diffstat (limited to 'src')
-rw-r--r-- | src/main/kotlin/util/SkyblockId.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/util/SkyblockId.kt b/src/main/kotlin/util/SkyblockId.kt index 7d8c96c..6260679 100644 --- a/src/main/kotlin/util/SkyblockId.kt +++ b/src/main/kotlin/util/SkyblockId.kt @@ -242,7 +242,7 @@ val ItemStack.skyBlockId: SkyblockId? } else -> { - SkyblockId(id) + SkyblockId(id.replace(":", "-")) } } } |