1.0.0
Compatibility
Changes
This mod saves the items stored in container blocks from removed mods. When such a block is missing, it is replaced with a special block that drops all of its stored items when broken. If the container held a large number of items and you want to avoid possible server lag, you can remove the items manually; once it is empty, the block destroys itself automatically.
At the moment, preservation works only for mods that store their inventory in a top-level Items tag, which is also the format used by vanilla containers. Support for custom rules, allowing modpacks to preserve items from specific tags and inventories, is planned for a future update.
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:J4QeaYQ7:anG1Ggls"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:J4QeaYQ7:anG1Ggls"
}

