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

