Tags
Creators
Details
Licensed AGPL-3.0-only
Published 2 months ago
All versions
1.2.0
Release
Rawlands 1.2.02 months ago 93
Uploaded by
Compatibility
Minecraft: Java Edition
26.1.x
Platform
Fabric
Supported environments
Client and server
Required content
Changes
Added new Biome
Coral Forest:
- Densly packed Corals
- Kelp Canopy
- Sea Pickles
- Tropical Fish
- Dolphins
- Pufferfish
- Rare Guardian spawns
- Teal Water Color (#01b9d1)
Added more languages
- Simplified Chinese
- Russian
- Spanish (Spain)
- German
- Brazilian Portuguese
- French
- Japanese
- Korean
- Polish
- Italian
- Turkish
- Ukrainian
- Czech
- Dutch
Meme Languages:
- LOLCAT
- Pirate Speak
- Upside Down English
- Shakespearean English
Fixed bugs
-
Fixed boats not breaking delta lilies
In MC 26.1.x Mojang reorganised the vehicle classes into a boat subpackage. AbstractBoat moved from net.minecraft.world.entity.vehicle.AbstractBoat → net.minecraft.world.entity.vehicle.boat.AbstractBoat. The @Mixin(targets = "...") string is resolved at runtime against the remapped jar, so the wrong package silently fails to apply.
-
Fixed performance issue caused by constantly scanning a lot of blocks while riding a boat
Nested loop → BlockPos.betweenClosed: The old code recomputed BlockPos.containing(...) six times per iteration (twice per axis), allocating multiple temporary BlockPos objects. BlockPos.betweenClosed(min, max) uses a single cursor that steps through the same range with zero allocation per step. pos.immutable() is called only on the one position that actually needs to be passed to destroyBlock, since the cursor is reused by the iterator.
-
Changed Shrubland values
Humidity -0.4f, -0.15f → -0.8f, -0.3f
Temperature 0.15f, 0.55f → 0.3f, 0.85f
-
Changed Flooded Delta values
Humidity 0.2f, 1.0f → 0.4f, 1.0f
Temperature 0.0f, 0.8f → 0.0f, 0.6f
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:41epYhDW:CXsP41yj"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:41epYhDW:CXsP41yj"
}


