aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-06-08 00:11:14 +0200
committerLinnea Gräf <nea@nea.moe>2025-06-08 00:11:14 +0200
commit5eb4bc7f2473f827cce6cb7dbb263460f7d8d4f4 (patch)
tree1f4f213032a0126cac54dca6d04b9bc97ab1ca26 /src
parent576dd477bb79d8c0953ae9ef04f879efb36e2d4b (diff)
downloadFirmament-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.kt2
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(":", "-"))
}
}
}