promotional bannermobile promotional banner

Carryon - Patched (Unofficial)

Direct drop in replacement for the Carryon mod by Tschipp

File Details

carryon-neoforge-1.21.11-2.9.0-patched.jar

  • R
  • May 18, 2026
  • 363.35 KB
  • 17
  • 1.21.11
  • NeoForge

File Name

carryon-neoforge-1.21.11-2.9.0-patched.jar

Supported Versions

  • 1.21.11

Curse Maven Snippet

NeoForge

implementation "curse.maven:carryon-patched-1543292:8106707"
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.