[8401] Restore original check as suggested by autor for priest bufs cast

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
nos4r2zod 2009-08-21 06:49:24 +04:00 committed by VladimirMangos
parent 6695b1319d
commit 6c57a01507
2 changed files with 3 additions and 2 deletions

View file

@ -176,7 +176,8 @@ SpellSpecific GetSpellSpecific(uint32 spellId)
case SPELLFAMILY_PRIEST:
{
// "Well Fed" buff from Blessed Sunfruit, Blessed Sunfruit Juice, Alterac Spring Water
if ((spellInfo->InterruptFlags & SPELL_INTERRUPT_FLAG_AUTOATTACK) &&
if ((spellInfo->Attributes & SPELL_ATTR_CASTABLE_WHILE_SITTING) &&
(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 "8400"
#define REVISION_NR "8401"
#endif // __REVISION_NR_H__