} else {
for (PotionEffectType potionEffect : PotionEffectType.values())
if ((potionEffect != null)
&& potionEffect.getName().equalsIgnoreCase(args[1]))
if ((level > 0) && (damaged != null)) {
damaged.addPotionEffect(new PotionEffect(potionEffect,
Math.abs(level) * 100, Math.abs(level) - 1));
} else if ((level < 0) && (damager != null)) {
damager.addPotionEffect(new PotionEffect(potionEffect,
Math.abs(level) * 100, Math.abs(level) - 1));
}
return;
}
}