// armor resistances vs dagger. daggerWpnRes could also be used if a skill
// was given to all classes. The values here try to be a compromise.
// They were originally added in a late C4 rev (2289).
if(target instanceof L2PcInstance)
{
L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();
if(armor != null)
{
if(((L2PcInstance) target).isWearingHeavyArmor())
{
damage /= Config.ALT_DAGGER_DMG_VS_HEAVY;