Tags
Creators
Details
Licensed Apache-2.0
Published last month
Updated 2 days ago
All versions
1.4.0+26.x
Release
WyWF 1.4.0+26.x2 days ago 16
Compatibility
Minecraft: Java Edition
26.2
26.1.x
Platform
Fabric
Supported environments
Singleplayer only
Changes
New
- Much faster searches. The mod now uses a built-in speed-up library when available. Biome checks become up to ~50× faster. It turns on by itself, and if the library is missing, the mod quietly keeps working the old way.
- Nether structures finally work. Searching for
nether fortressorbastionnow finds real seeds. Before, these searches almost always came back empty when the speed-up mode was active. - Cave biomes work with "under". Queries like
under lush cavesnow return results — before this version, they never did. - Smarter spawn fallback. When the game's own spawn finder comes up empty, the mod now searches around for the nearest sensible spot (plains, forest, taiga, meadow, sunflower plains) within a few thousand blocks, instead of just guessing next to the origin.
Changed
- Spawn-centered search is more accurate. Each seed now gets its own spawn position and terrain height (before, many seeds shared the same wrong height and an approximate position). When the predicted point lands in water, nearby dry ground is preferred.
- Strongholds are placed correctly. Each seed now gets its own true ring positions. Before, seeds that differed only in their upper bits shared one wrong set, giving both false finds and missed finds.
- Renamed biomes match again. Looking for snowy plains, windswept hills, old growth pine taiga, wooded badlands and friends now works together with the speed-up mode — before, these biomes silently never matched there.
- Village phrases work again. Combinations like
plains village,desert temple,snowy villageare recognized as one thing again, and asking for a nether fortress, bastion or end city by name works. somecounts honestly. Asking forsome 2 stronghold,some 2 mansionand similar now truly requires that many — before, one instance was enough.- Even faster. Removed hidden disk writing inside the speed-up library that slowed down every checked seed, and sorted query parts once per search instead of once per seed.
- More reliable caching. An internal mix-up that could rarely swap two different search results has been eliminated.
- Calmer logs. Normal, successful events no longer shout like warnings; genuine failures now report full details.
- Small cleanup in the settings screen layout.
Fixed
- Searches centered on the spawn point no longer reject every seed up front when structures are requested.
- A crash while predicting the spawn point could silently stop a whole search thread mid-run. It now skips just that one seed.
- Very rare race: clicking "Create World" at exactly the wrong moment could create a world with the wrong (or zero) seed.
- Rare freezes and corrupted results when many search threads shared one lookup table.
- Saved search reports no longer scramble when several threads write them at once.
- The speed-up library's helper objects are properly released after each search instead of leaking memory.
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:PfzoepP4:Igf9fKCm"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:PfzoepP4:Igf9fKCm"
}

