From 5eb4bc7f2473f827cce6cb7dbb263460f7d8d4f4 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sun, 8 Jun 2025 00:11:14 +0200 Subject: fix: inconsistency between neu item id and nbt item id for some logs --- src/main/kotlin/util/SkyblockId.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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(":", "-")) } } } -- cgit