diff options
author | KingPin <none@none> | 2008-10-20 12:59:45 -0500 |
---|---|---|
committer | KingPin <none@none> | 2008-10-20 12:59:45 -0500 |
commit | cdb7fd43eef1a4577da1af9012d302b0cd2de5bb (patch) | |
tree | 9ae1be3f5958265703d9701ac4b796c70c29ec99 /src/game/SpellEffects.cpp | |
parent | 35f378aef9e2da3b24b2adb182f165d52da6a09b (diff) |
[svn] * Minor code fixes
* Move account related functions from ObjectMgr to AccountMgr and drop duplicate functions - source mangos
* recognize the dummy spells 38637, 38638 and 38639 as negative - source mangos
* added new command ".reload all_locales". Now all locales_* tables can be reloaded - source mangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r-- | src/game/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 715fb276b29..085fb44b136 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -3083,6 +3083,7 @@ void Spell::EffectSummonType(uint32 i) break; case SUMMON_TYPE_CRITTER: case SUMMON_TYPE_CRITTER2: + case SUMMON_TYPE_CRITTER3: EffectSummonCritter(i); break; case SUMMON_TYPE_TOTEM_SLOT1: @@ -3097,7 +3098,6 @@ void Spell::EffectSummonType(uint32 i) case SUMMON_TYPE_UNKNOWN3: case SUMMON_TYPE_UNKNOWN4: case SUMMON_TYPE_UNKNOWN5: - case SUMMON_TYPE_UNKNOWN6: break; default: sLog.outError("EffectSummonType: Unhandled summon type %u", m_spellInfo->EffectMiscValueB[i]); |