Links
Tags
Creators
Details
1.8.24-B39
Compatibility
Changes
Version 1.8.24:
- Properly blame mods who are returning a null ItemStack in getPickBlock.
- This is completely invalid behavior and I will no longer tolerate being blamed for the crashes it causes.
- Example blame: `minecraft:cobblestone from mod Minecraft returned a null ItemStack in getPickBlock(...). Please report this to them.`
- Fixed tooltip width calculation not taking fully formatted ITextComponents into account
- Bold lettering spilled out of the tooltip since it's wider than normal text.
- Wrap Waila style plugins in our own plugin system to bring everything closer to the same codebase.
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:kr1RaEqy:Gy2ElbHJ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:kr1RaEqy:Gy2ElbHJ"
}

