Included content
| Name | |
|---|---|
A version of Methane that runs on 1.20.5/6.
(seriously, half the community should not get as aggressive at an open-source mod democratically changing its terms for future versions when they literally play a closed-source game that has also been imposing restrictions recently as well).
I'm sorry if you are a user of Methane, as I likely will not be fixing bugs as often. I'll likely still do some work on Faster Random due to it being more maintainable and less likely to break from updates.
TL:DR: I'm partially stepping back from the modding scene due to burnout, and I'm moving on to other projects in the meantime.
Changes:
| Name | |
|---|---|
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.
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:pkI4SefA:vXZivjdQ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:pkI4SefA:vXZivjdQ"
}