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
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.

