Included content
| Name | |
|---|---|
This update fixed Issue #112, where the Failed to clean up cached files error kept appearing in console. Apologies to everyone who was affected and had their consoles and logs flooded with error messages.
Additionally, I have made a resource pack that allows people to use this mod completely independently from Fabric API. Given Fabric API's resource loader is responsible for loading modded resources; If you do not have Fabric API installed, you may instead download and apply the resource pack I made, effectively allowing you to use this mod properly without Fabric API.
The resource pack file is called bss_rp-3.9.3+1.20.4.zip, and can be downloaded by clicking here. It works on all 1.20.X versions as well, so feel free to ignore any "incompatibility" warnings the game shows you.
| 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:n6PXGAoM:4lGy0aaq"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:n6PXGAoM:4lGy0aaq"
}