Tags
Creators
Details
Licensed ARR
Published 9 months ago
Updated 5 days ago
All versions
26.7-Release
Release
PlayerDataSync 26.7-Release2 months ago 379
Compatibility
Minecraft: Java Edition
26.2
26.1.x
1.21.x
1.20.x
Platforms
Bukkit
Fabric
Folia
Forge
Paper
Purpur
Spigot
Velocity
Supported environments
Dedicated servers only
Changes
Fixed
- Economy sync (Vault): Balances were never actually synchronized.
SyncManager#setEconomydiscarded the Vault provider, andPlayerData.balancewas neither read on quit nor applied on join — thesync.economyconfig toggle had no effect. Balances now transfer across servers, andsync.economy: falsegenuinely disables it.
Added
- Paper 26.2 support: New
v26_2_R1version handler built againstpaper-api 26.2; server version detection recognizes26.2automatically. - Fabric 26.1 / 26.2 modules: New adapter modules targeting Minecraft 26.1 and 26.2.
Changed
- Paper 26.1.2: Updated to the latest stable build (
26.1.2.build.72-stable). - Build toolchain: Gradle 9.6.0; Fabric Loom 1.15.5 (1.20/1.21 lines) and 1.17.12 (26.x lines).
- Fabric mappings: MC 26.x builds use Yarn
1.21.11+build.6, since Mojang no longer publishes official mappings for 26.x. Fabric has aligned these names with Mojang's, so 26.x adapter code usesServerPlayer,CompoundTag,StreamCodec, andnet.minecraft.resources.Identifier.
Known issues
- Forge is not built in this release. ForgeGradle 6.0.x refuses to run on Gradle 9+, and no compatible release exists yet. The Forge modules remain in the repository and can be re-enabled with
-Ppds.enableForge=trueonce ForgeGradle supports Gradle 9.
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:xIV08o16:6bYsUdBA"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:xIV08o16:6bYsUdBA"
}

