Links
Tags
Creators
Details
Licensed CC0-1.0
Published 2 weeks ago
Updated 21 hours ago
All versions
1.9.0+neoforge-1.21.11
Release
1.9.0 (NeoForge 1.21.11)21 hours ago 2
Compatibility
Minecraft: Java Edition
1.21.11
Platform
NeoForge
Supported environments
Client-side
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.
Also
- The Forge and NeoForge builds were reporting version 1.7.3 instead of the real one.
- Each file now declares only the Minecraft versions 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:yenB8DW8"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Q5sJYCyk:yenB8DW8"
}

