All versions
4.2.6
Release
Youkai's Homecoming-unofficial-port 4.2.6last month 442
Compatibility
Minecraft: Java Edition
1.21.1
Platform
NeoForge
Supported environments
Client and server
Changes
4.2.6
Bug Fixes
- Fixed a server-crashing infinite loop in FastProjectileAPI's collision detection:
IEntityCache.foreach()could enter an unbounded triple loop when a projectile had abnormal velocity, causing the server to hang indefinitely. Added section traversal bounds to cap iteration at a safe maximum. - Fixed abnormal projectile velocity causing runaway chunk scanning:
BaseProjectilenow validates velocity each tick, clampingNaN,Infinity, or vectors exceeding 100 blocks/tick to zero before computing collision. - Fixed progressive danmaku lag that worsened over time: bullets were performing collision checks against every other bullet in the same area, creating O(n²) scaling. Bullets now skip collision with other projectile entities since bullet-to-bullet hits have no gameplay effect. This eliminates the quadratic slowdown without reducing bullet count or visual density.
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:gjywHTJ3:iRox1nLb"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:gjywHTJ3:iRox1nLb"
}

