Tags
Creators
Details
0.4.0+1.20.4-fabric
Compatibility
Required content
Changes
This update is mainly a project structure overhaul, with the goal of making updating & maintenance easier. The new setup now supports every Minecraft version from 1.17 to 1.21.4.
The Fabric & (Neo)Forge repos and projects are also now combined instead of having separate ones for each
- Fabric is available for all versions
- NeoForge is available for 1.20.2-1.21.4 (and will be supported in future MC versions)
- Forge is available for 1.17-1.20.4 (currently not planned to support in future MC versions)
I also removed the setting to use the old custom sounds since they used to cause issues with multiplayer, especially on Forge. Now it just always uses the vanilla water/lava dripstone drip sounds.
If you notice any new issues with this version, please open an issue :)
Optional dependencies
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:T8MMXTpr:NE8uu6Ms"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:T8MMXTpr:NE8uu6Ms"
}



