Tags
Creators
Details
6.0.2
Compatibility
Changes
- Updated Fabric and NeoForge to 26.1 - 26.1.2. Forge is still broken on those versions, so it has been (temporarily?) disabled.
- Added more information to dump output for bossbar feature.
- Scoreboard teams are now only sent to players who can actually see the target player in the tablist. A test subject running Velocity went from 100% usage of nametag thread at 2000 players to 20% at 3500 players (despite the fact that the feature's usage is scaling with O(n^2) complexity).
- Fixed startup errors on Bukkit 1.7.10
With the introduction of Java 25 into the jar (needed by modded platforms), it is no longer possible to support all desired platforms and versions in the same jar. This is because Paper's plugin remapper on versions 1.20.5 - 1.21.4 only supports up to Java 23 (using a higher Java version does not solve this). As such, 2 jars will be provided from now on. First jar with everything included, called "Fabric, NeoForge", which can be used everywhere except Paper 1.20.5 - 1.21.4. Second jar without modded platforms, allowing support for Paper 1.20.5 - 1.21.4, called "Vanilla".
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:gG7VFbG0:1HEqiCWu"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:gG7VFbG0:1HEqiCWu"
}

