Tags
Creators
Details
26.8-ALPHA
Compatibility
Changes
β οΈ Alpha. Everything below compiles and is code-reviewed, but the economy fix, the new location teleport and the Redis live sync have not been exercised against a running server with Vault, Redis or a real multi-server setup. Test on staging before production.
Fixed
- Dead config toggles:
sync.attributes,sync.pdcandsync.flightwere declared inconfig.ymlbut never evaluated β switching them off did nothing. Same bug class as the economy fix in 26.7. - Item exclusions on Fabric:
exclusions.itemswas stored and never read, so excluded items synced anyway. Bothminecraft:diamondand the Bukkit-styleDIAMONDspelling are accepted.
Added
- Location sync now actually works. The position was previously captured and written to storage but never restored β no teleport existed anywhere in the plugin. Joining players are now teleported to their stored position.
- Guarded by
sync.location, which defaults tofalse. It only works when the destination server has a world of the same name, and turning it on by default would have started teleporting players on upgrade. - If the world is missing, the restore is skipped with a warning instead of dropping the player somewhere wrong.
- Guarded by
- Redis live sync completed. The subscribe handler parsed the incoming UUID and then did nothing β publishing worked, but no server ever acted on it. Receiving servers now reload that player if they are online locally. Messages carry a per-server node ID so a server ignores its own publishes rather than reloading over the save it just made.
- Config support for Fabric. Fabric previously returned hardcoded defaults for every config lookup, so no
sync.*toggle worked at all. Aplayerdatasync.propertiesfile is now generated in the Fabric config directory, using the same keys as the Bukkit config. Storage settings are read from it too, instead of the previously hardcoded (and non-functional) SQLite database. - More data synced on Fabric (MC 26.x): Ender Chest, potion effects and attributes.
Known issues
- Fabric is not at parity with Paper. Advancements and statistics are not synced on any Fabric version. The 1.20 and 1.21 modules also still lack Ender Chest, potion effects and attributes β only 26.x gained those. Planned for 26.8-BETA.
- On Fabric, use MariaDB, PostgreSQL or MongoDB. The MySQL driver is not bundled and mod loaders do not provide one. SQLite is not supported on any platform.
- Forge is not built β ForgeGradle does not support Gradle 9, which the MC 26.x toolchain requires.
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:CLlIGfI3"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:xIV08o16:CLlIGfI3"
}

