diff options
author | alfiearmadillo <56178777+alfiearmadillo@users.noreply.github.com> | 2025-07-06 22:47:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-06 23:47:03 +0200 |
commit | d92a326fe39493e7405927df13de94dafc6e6cef (patch) | |
tree | c907fbb587304ae8420054646beb1e28e5baebd6 /src/main/kotlin/features/debug/PowerUserTools.kt | |
parent | b09648d71258f8d4012c9b50d679f7c3db9201b2 (diff) | |
download | Firmament-d92a326fe39493e7405927df13de94dafc6e6cef.tar.gz Firmament-d92a326fe39493e7405927df13de94dafc6e6cef.tar.bz2 Firmament-d92a326fe39493e7405927df13de94dafc6e6cef.zip |
feat: add option for MS in timestamp settings
Diffstat (limited to 'src/main/kotlin/features/debug/PowerUserTools.kt')
-rw-r--r-- | src/main/kotlin/features/debug/PowerUserTools.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/features/debug/PowerUserTools.kt b/src/main/kotlin/features/debug/PowerUserTools.kt index 1a7b2cf..b90fefe 100644 --- a/src/main/kotlin/features/debug/PowerUserTools.kt +++ b/src/main/kotlin/features/debug/PowerUserTools.kt @@ -41,6 +41,7 @@ import moe.nea.firmament.util.mc.iterableArmorItems import moe.nea.firmament.util.mc.loreAccordingToNbt import moe.nea.firmament.util.skyBlockId import moe.nea.firmament.util.tr +import moe.nea.firmament.util.grey object PowerUserTools : FirmamentFeature { override val identifier: String @@ -228,7 +229,7 @@ object PowerUserTools : FirmamentFeature { fun addItemId(it: ItemTooltipEvent) { if (TConfig.showItemIds) { val id = it.stack.skyBlockId ?: return - it.lines.add(Text.stringifiedTranslatable("firmament.tooltip.skyblockid", id.neuItem)) + it.lines.add(Text.stringifiedTranslatable("firmament.tooltip.skyblockid", id.neuItem).grey()) } val (item, text) = lastCopiedStack ?: return if (!ItemStack.areEqual(item, it.stack)) { |