1.0.0-neoforge-1.21
Compatibility
Changes
Version 1.0 (For Minecraft NeoForge 1.21)
Saturation limit is no longer dependent on hunger level (can exceed past the traditional 20)
Excess foodLevel increase overflows into saturationLevel
Query current saturation level with /getSaturation, or change it directly with /addSaturation and /setSaturation
The technical limit for saturation is 3.4e+38F (Float.MAX_VALUE), so commands that directly change saturation will not exceed this limit.
This is the first port of Saturation Plus for Minecraft NeoForge. Implementations include 1.0 and 1.2 from the Fabric versions (while Game Rules from 1.1 may be added in the future).
Please report any potential issues (if any) regarding the mod's functionality on clients and servers (the easiest way to ensure the mod works as intended is through /getSaturation).
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:AgApeolo:TjbI1Ukk"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:AgApeolo:TjbI1Ukk"
}

