1.1.0-forge-1.20
Compatibility
Changes
Patch Notes - Version 1.1 (For Minecraft Forge 1.20-1.20.4)
- Added two game rules for customizing saturation settings on a per-world basis:
-
hungerLimitsSaturation: Controls whether hunger affects saturation. If true, limit the player's saturation level to never exceed the current hunger level.
-
maxSaturation: Controls the max saturation limit for players. Set to -1 or lower to disable this limit. Set to 0 to remove saturation entirely.
- Set hungerLimitsSaturation to false to allow saturation levels above 20.
-
Traditional Minecraft settings: hungerLimitsSaturation = true, maxSaturation = 20
-
Infinite saturation settings (Default): hungerLimitsSaturation = false, maxSaturation = -1
-
This file is intended for Minecraft Forge versions 1.20-1.20.4. Implementations include 1.0-1.2 from the Fabric versions.
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:9kiFQPiy"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:AgApeolo:9kiFQPiy"
}

