[9764] Remove outdated code for 15286

Signed-off-by: Laise <fenrisse@gmail.com>
This commit is contained in:
przemratajczak 2010-04-19 09:16:56 +03:00 committed by Laise
parent b2fefc2ca9
commit 6398abc725
2 changed files with 2 additions and 12 deletions

View file

@ -3412,11 +3412,8 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellEntry const* spellproto
}
case SPELLFAMILY_PRIEST:
{
// Vampiric Embrace
if ((spellproto->SpellFamilyFlags & UI64LIT(0x00000000004)) && spellproto->SpellIconID == 150)
return DIMINISHING_LIMITONLY;
// Shackle Undead
else if (spellproto->SpellIconID == 27)
if (spellproto->SpellIconID == 27)
return DIMINISHING_DISORIENT;
break;
}
@ -3487,13 +3484,6 @@ int32 GetDiminishingReturnsLimitDuration(DiminishingGroup group, SpellEntry cons
return 40000;
break;
}
case SPELLFAMILY_PRIEST:
{
// Vampiric Embrace - limit to 60 seconds in PvP (3.1)
if ((spellproto->SpellFamilyFlags & UI64LIT(0x00000000004)) && spellproto->SpellIconID == 150)
return 60000;
break;
}
default:
break;
}