Tags
Creators
Details
All versions
21.5.3+fabric-1.21.5
Release
21.5.3+fabric-1.21.5last year 3,327
Compatibility
Minecraft: Java Edition
1.21.5
Platform
Fabric
Supported environments
Client-side
Server-side
Required content
Changes
- Updated to Minecraft 1.21.5
- Added
BalmModuleandBalmClientModuleas an alternative more structured way of initializing a mod with Balm - Added
Balm.onRuntimeAvailableandBalmClient.onRuntimeAvailableto allow more stable access to Balm outside of mod loader lifecycles - Added
BlockGetterandBlockPostoDigSpeedEvent, now sets the final value on all loaders - Refactored Capabilities support to reduce mod-loader-specific overhead
- Refactored Configs to allow for declarative config schemas and cleaner implementation
- Balm mods no longer need to register their own config sync packet
- Added
BalmClient.addResourceReloadListener() - Added
ConfigLoadedEvent - Fixed
ScreenInitevents not firing reliably for all screens on NeoForge - Fixed
GuiDrawEventnot firing on NeoForge - Changed config i18n to use
modid.configuration.category.keyformat - Changed client-side registration methods to require identifiers
- Removed several obsolete hooks from
BalmHooks - Removed obsolete key mapping methods - use Kuma instead
- Removed obsolete
BalmTextures - Removed
ExtractionAwareContainerin favor ofWorldlyContainer
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:MBAkmtvl:R2PflFrF"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:MBAkmtvl:R2PflFrF"
}

