Tags
Creators
Details
Licensed MIT
Published 3 years ago
Updated 2 days ago
All versions
1.3.0+26.2-fabric
Release
1.3.0+26.22 days ago 1,393
Compatibility
Minecraft: Java Edition
26.2
Platform
Fabric
Supported environments
Client and server
Required content
Any compatible version
Changes
1.3.0
- Minecraft 26.2 support
- Minecraft 26.1.2 support (Java 25).
- Modernize package and maven group: Java package
net.rpg_foundation.structure_pool(wasnet.fabric_extras.structure_pool), maven groupnet.rpg_foundation(wasnet.foundation); mod id and data unchanged - Spawn limits are now enforced for elements reached through a pool's fallback pool. They were silently uncapped before. This is seed-visible: filtering an element out of a candidate list changes what
Util.shufflereturns, so an affected structure generates differently for the same seed. Only structures whose placement reaches an injected element via a fallback pool are affected. - No longer ships an access widener (Fabric) / access transformer (NeoForge) — one fewer thing to conflict with.
- One fewer mixin:
StructureTemplatePoolis no longer mixed into at all (injected elements are now identified by instance identity), and all mixin-owned members are@Unique. injectIntoStructurePoolis idempotent per pool instance: injecting the same structure into the same pool twice no longer doubles its weight, and warns instead.- Injecting now invalidates the pool's memoised
maxSize. - The "structure pool not found" message goes to the mod logger instead of
System.err, so a mistyped pool id in a config is visible in a filtered log.
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:LrYZi08Q:JO33Bce1"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:LrYZi08Q:JO33Bce1"
}

