promotional bannermobile promotional banner

Carryon - Patched (Unofficial)

Direct drop in replacement for the Carryon mod by Tschipp

File Details

carryon-fabric-1.21.11-2.9.0-patched.jar

  • R
  • May 18, 2026
  • 361.53 KB
  • 52
  • 1.21.11
  • Fabric

File Name

carryon-fabric-1.21.11-2.9.0-patched.jar

Supported Versions

  • 1.21.11

Curse Maven Snippet

Fabric

modImplementation "curse.maven:carryon-patched-1543292:8106717"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Changed Method

Common/src/main/java/tschipp/carryon/CarryOnCommon.java

Original Method (official mod)

private static int potionLevel(ItemStack stack, Entity entity)
{
    CompoundTag nbt = stack.getTag();

    if(nbt != null && nbt.contains("BlockEntityTag"))
    {
        CompoundTag blockEntityTag = nbt.getCompound("BlockEntityTag");

        if(blockEntityTag.contains("Items"))
            return 120;
    }

    return 0;
}

Patched Method

private static int potionLevel(ItemStack stack, Entity entity)
{
    return 0;
}

This is the complete behavioral change introduced by the patch.