With 1.21.9 debug features are no longer stripped in the release jar, but they require a jvmArg for them to be enabled.
This mod now changes it so the features can be enabled via commands.
The commands have been split into
debugutils: For features that require server datadebugutils_clientFor feature that only need client data. These features do not require the mod on the server either
If you want to use the mod in your dev environment just add the following snippet to your build.gradle
repositories {
maven {
url "https://maven.blazing-coop.net/releases"
}
}
dependencies {
//Fabric==========
modRuntime("io.github.flemmli97:debugutils:${minecraft_version}-${mod_version}-{mod_loader}")
//NeoForge==========
runtimeOnly("io.github.flemmli97:debugutils:${minecraft_version}-${mod_version}-{mod_loader}")
}