[8400] Remove redundent wrong check.

This commit is contained in:
VladimirMangos 2009-08-21 06:38:56 +04:00
parent e07a0d9652
commit 6695b1319d
2 changed files with 2 additions and 3 deletions

View file

@ -176,8 +176,7 @@ SpellSpecific GetSpellSpecific(uint32 spellId)
case SPELLFAMILY_PRIEST:
{
// "Well Fed" buff from Blessed Sunfruit, Blessed Sunfruit Juice, Alterac Spring Water
if ((spellInfo->Attributes & SPELL_ATTR_CASTABLE_WHILE_SITTING)==0 &&
(spellInfo->InterruptFlags & SPELL_INTERRUPT_FLAG_AUTOATTACK) &&
if ((spellInfo->InterruptFlags & SPELL_INTERRUPT_FLAG_AUTOATTACK) &&
(spellInfo->SpellIconID == 52 || spellInfo->SpellIconID == 79))
return SPELL_WELL_FED;
break;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8399"
#define REVISION_NR "8400"
#endif // __REVISION_NR_H__