public static short guessData(final ThrownPotion p) {
if (p.getEffects().size() == 1) {
final PotionEffect e = p.getEffects().iterator().next();
final Potion d = new Potion(PotionType.getByEffect(e.getType())).splash();
return d.toDamageValue();
}
return 0;
}
}