From ab584ed95a0b1d81b70f29d803157e987e7d2f51 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Fri, 26 Apr 2024 22:59:23 +0200 Subject: Display version id in /neustats --- .../github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt | 1 - .../github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt index b142ccc1..15c26daa 100644 --- a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt +++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt @@ -43,7 +43,6 @@ import net.minecraft.util.EnumParticleTypes import net.minecraftforge.common.MinecraftForge import net.minecraftforge.fml.common.eventhandler.SubscribeEvent import java.util.function.Predicate -import kotlin.io.path.absolutePathString import kotlin.math.floor @NEUAutoSubscribe diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt index 9e9cca14..85a14e15 100644 --- a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt +++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt @@ -176,6 +176,10 @@ class NEUStatsCommand { "Mod Version", Loader.instance().indexedModList[NotEnoughUpdates.MODID]!!.displayVersion ) + builder.append( + "Version Id", + NotEnoughUpdates.VERSION_ID + ) builder.append("SB Profile", SBInfo.getInstance().currentProfile) .also(::appendRepoStats) } -- cgit