diff options
| author | megamage <none@none> | 2009-03-02 16:46:17 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-03-02 16:46:17 -0600 |
| commit | e73d01182f74110372655d29787dc73de6efedbc (patch) | |
| tree | 70e5044b442f139ca1486438e46b40010047c8fd /src | |
| parent | f87dda2473cc534d2fc60e0933213fad862c3dd4 (diff) | |
[7358] Fixed spell_area autocast field loading.Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/SpellMgr.cpp | 1 | ||||
| -rw-r--r-- | src/shared/revision_nr.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 8a0eb06ab11..388ace02ae1 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2691,6 +2691,7 @@ void SpellMgr::LoadSpellAreas() spellArea.auraSpell = fields[5].GetUInt32(); spellArea.raceMask = fields[6].GetUInt32(); spellArea.gender = Gender(fields[7].GetUInt8()); + spellArea.autocast = fields[8].GetBool(); if(!sSpellStore.LookupEntry(spell)) { diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index e4665bd5afc..6149e27cbb2 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7357" + #define REVISION_NR "7358" #endif // __REVISION_NR_H__ |
