Tags
Creators
Details
Licensed MIT
Published 5 years ago
All versions
6.6.0-BETA-bukkit
Beta
6.6.0-BETA-bukkitlast year 560
Compatibility
Minecraft: Java Edition
1.21.4
Platforms
Folia
Paper
Purpur
Changes
This version introduces many new features including:
- Support for Minecraft 1.21.4
- Allay platform support
- Minestom platform support
- Improvements to the CLI generator
- Various other changes, optimizations, and bug fixes
Config pack development changes:
- Platform Minecraft Biome Config:
- Both Fabric and Bukkit's Minecraft Biome Config have been cleaned up and Bukkit now supports the full range of options
- Noise addon changes:
- Both
FBMand the basicArithmeticSamplersamplers now implement theDerivativeNoiseSamplerAPI - You can now turn off salting the noise lookup of the Cellular sampler with the new
salt-lookupparameter - New
LINEAR_MAPnormalizer
- Both
Paralithic changes:
- Adds support for Paralithic let expressions. Let expressions enable the ability to bind names to expressions within the context of another expression, e.g.
5 + let
a := 3.5,
b := a^2, // Optional trailing comma
in a * b * (let d := sqrt(x) in cos(d))
- As the introduction of let expressions may break config packs and the noise predicate addon (which uses the
ininvocation variable reserved as a keyword in let expressions), this must explicitly be enabled inpack.ymlvia the following:
expressions:
options:
enable-let-expressions: true
- The noise predicate addon will use
inputinstead ofinif let expressions are enabled, which currently affects only theEXPRESSION_NORMALIZERsampler
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:FIlZB9L0:OiHwKjvN"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:FIlZB9L0:OiHwKjvN"
}

