Links
Tags
Creators
Details
1.9.0+forge-1.21.6
Compatibility
Changes
Fixed: locked items could still leave their slot
Two ways a locked item escaped, both found in real PvP:
- Double-clicking a matching stack. Minecraft's "gather all" swept items out of locked slots. The click lands on a different slot, so the lock never saw it - restocking mid-fight would quietly drain a locked stack.
- The swap-offhand key (default F). This never went through the inventory system at all, so a locked item moved to your offhand unimpeded.
Both are blocked now.
Added: Forge support for more of 1.21.x
Forge previously only had 1.21.11. This release adds 1.21.1 and 1.21.6, with the remaining versions to follow as each is verified.
Also
- The Forge and NeoForge builds were reporting version 1.7.3 instead of the real one.
- Each file now declares only the Minecraft version it was actually built and tested against.
- The mixins that block item movement now refuse to load silently if they cannot attach, so the mod can never look active while leaving a slot unprotected.
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:Q5sJYCyk:lfpkJLbq"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Q5sJYCyk:lfpkJLbq"
}

