diff options
| author | QAston <none@none> | 2009-04-19 02:32:03 +0200 | 
|---|---|---|
| committer | QAston <none@none> | 2009-04-19 02:32:03 +0200 | 
| commit | 49bfc48f6e29b6bfd5de7f158ca1f4112ccc7014 (patch) | |
| tree | 682741208628cd3dbdc734ef3d50e8218417071e /src/game/SpellMgr.cpp | |
| parent | c75e4675134213ef05e483fb86a23ae66a58adf1 (diff) | |
*Fix Dash - original patch by Dani.
*Set max target limit for Circle of healing.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
| -rw-r--r-- | src/game/SpellMgr.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index c3467ad7e1a..d130d58f9fd 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2423,6 +2423,11 @@ void SpellMgr::LoadSpellCustomAttr()                  if(spellInfo->SpellFamilyFlags[2] & 0x100)                      spellInfo->MaxAffectedTargets = 2;                  break; +                // circle of healing +            case SPELLFAMILY_PRIEST: +                if(spellInfo->SpellFamilyFlags[0] & 0x10000000) +                    spellInfo->MaxAffectedTargets = 5; +                break;          }      }  | 
