Tags
Creators
Details
2023.04.09
Compatibility
Changes
BIG NEWS: Llama Steeds' feature count just DOUBLED TRIPLED! This is a rare and momentous occasion for any Minecraft mod, especially one which was once believed to have reached perfection...but here we are, with a more perfect mod! Rejoice!
Changelog
- Implement #4 - Llamas will now form caravans behind a player-controlled llama. See CaravanMixin for details
- Fabric API is now an optional dependency
- Implemented a new gamerule if Fabric API is present: maxLlamaCaravanLength, which sets the maximum length a caravan can form to
- Refactored the old LlamaSteeds mixin class to LlamaMixin
- Updated README.md to include a new screenshot of the new caravan features and to include a link to Modrinth in anticipation of releasing there
- Updated version number, Yarn version, and loader version
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:VmkAInWR:l7ylHlip"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:VmkAInWR:l7ylHlip"
}

