1.21.11-10x
Compatibility
Changes
A lightweight, highly optimized Fabric mod designed to significantly extend the duration of beneficial status effects in Minecraft.
Core Features
Selectable Multipliers: Just like choosing the right dosage for a specific need, you can select how strong you want the buff to be. Available in 3x, 5x, and 10x strengths. Simply navigate to the Versions tab and download the specific multiplier file you prefer.
Universal Application: Natively extends the duration of Drinkable, Splash, and Lingering potions.
Beyond Potions: The multiplier automatically applies to other beneficial effects, including Beacon auras and Golden Apples.
Balanced Design: Exclusively targets positive status effects. Negative debuffs like Poison, Slowness, or Wither are completely ignored and remain at their standard vanilla durations.
Technical Details
Platform: Built natively for Fabric 1.21.11.
Injection Method: Utilizes Mixins to intercept the MobEffectInstance at the precise moment of application on the LivingEntity.
UI Synchronization: By modifying the core application logic rather than altering tooltip text, the mod ensures that your on-screen HUD timer reads the correct modified duration and counts down at a standard, accurate speed.
High Compatibility: Instead of hardcoding specific vanilla items, the code targets the overarching MobEffectCategory.BENEFICIAL flag. This means it should automatically work with custom positive potions added by other mods.
Installation
Download your preferred multiplier .jar from the Versions tab and place it into your mods folder. Ensure you have the standard Fabric API installed.
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:X1CYAG4S:hZa0orlM"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:X1CYAG4S:hZa0orlM"
}

