3.0.1
Compatibility
Required content
Changes
Bug Fixes
-
Fixed portals not disappearing when breaking a ScaleBox. Portals from a removed ScaleBox now reliably clean themselves up instead of floating in the world indefinitely.
-
Fixed broken portals after picking up and re-placing a ScaleBox far from its original location. Previously, if you moved far enough away for the area to unload before placing the box again, the old portals would get stuck and the new ones would behave incorrectly. The mod now keeps track of leftover portals and removes them as soon as the area loads again, even if that takes a few seconds.
-
Fixed a crash on servers using Sinytra Connector. The mod would crash on startup/join with a
NoSuchMethodError. This has been resolved.
Improvements
- The mod now performs a background cleanup sweep every 5 seconds, automatically removing any stale or orphaned portals that may have slipped through. This acts as a safety net for any edge cases not covered by the main fixes.
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:Vjm9818I:3Aj9Dpc4"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Vjm9818I:3Aj9Dpc4"
}

