1.3.0-1.21.11
Compatibility
Changes
Patch Notes - Version 1.3 (For Minecraft Fabric 1.21.11)
-
This update implements the remaining features of Fabric 1.3 for Minecraft 1.21.11.
-
Saturation and exhaustion stats now appear as visuals beside the hunger meter.
-
Saturation is displayed in yellow text and is updated constantly through server packets.
-
Exhaustion is displayed in gray text as a percentage that is dependent on the world's maxExhaustion game rule.
-
Both displays are disabled if the mod is not detected on the server (this mod must be installed on both client and server).
-
Concerning the AppleSkin mod (used for displaying saturation and exhaustion), the following issues were noted:
- The saturation display projection when holding food does not take into account the extra saturation gained from overflowed hunger.
- If maxSaturation is set below 20, the projection mechanic can still display beyond the set limit.
- If alwaysEat is set to true, the projection does not appear when holding any food that would otherwise be uneatable if alwaysEat was false.
- The exhaustion display is always relative to the vanilla limit of 4.0, and does not scale for larger or smaller maxExhaustion values
-
AppleSkin can still be used for the food projection mechanic, but the visual stats provided by SaturationPlus may be preferable if both mods are installed.
-
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:x7KT4Zl7"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:AgApeolo:x7KT4Zl7"
}

