All versions
1.0.2+26.1.2
Release
dimension-leak-fix-mc26.1.2-fabric-1.0.2.jar2 weeks ago 108
Compatibility
Minecraft: Java Edition
26.1.2
Platform
Fabric
Supported environments
Client-side
Changes
v1.0.2:
- Fixes a crash when travelling through a portal alongside mods that keep a reference to an entity, such as Perception. Reported by a user, and the fault was mine.
- Until 1.0.1 the cleanup set Entity.level to null on every entity of the world you were leaving, to break the entity-to-world chain that keeps the old world in memory. Vanilla guarantees that field is never null while the entity lives, so nothing guards against it: any mod holding an entity across the transition read null and crashed. That step is gone.
- Nothing else changes. The deferred pass still empties the old world's own containers, which needs no such mutation, and the leak the removed step targeted belongs to whichever mod retains the entity in the first place.
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:nT8BgIrU:ti9qobj5"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:nT8BgIrU:ti9qobj5"
}

