Tags
Creators
Details
Licensed LGPL-3.0-or-later
Published 2 years ago
All versions
1.09
Alpha
Take It Out — Minecraft Plugin 1.09last month 39
Compatibility
Minecraft: Java Edition
26.1.x
1.21.x
Platforms
Paper
Purpur
Spigot
Changes
✨ New Features
- Dump inventory — the mod can now push items from the player's inventory into linked containers. The plugin now handles the
dump_inventorypacket to support this. - Dump containers in item extraction — when the player's inventory is full and trying to take an item from a linked container, the plugin will now try to offload the held item (or a swappable inventory item) into designated dump containers before giving up.
🐛 Bug Fixes
- Partial stack merge — taking an item from a linked container now correctly merges into partially filled inventory slots (main hand first, then all inventory slots), matching the Fabric mod's extraction logic.
- Scan limit not shown in UI — the linked container scan limit is now correctly sent to the client when the mod UI is opened, so the
X/Ycounter displays properly on Paper servers.
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:usAyJ0Wy:K17iaV0A"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:usAyJ0Wy:K17iaV0A"
}

