diff options
author | raczman <none@none> | 2010-02-17 00:48:32 +0100 |
---|---|---|
committer | raczman <none@none> | 2010-02-17 00:48:32 +0100 |
commit | 97c62f2c737d5576cc632c2ef18f659bff2cc261 (patch) | |
tree | 5ec1faf09e1ab0927ba3baa32c99983744dfc2be /src/game/Spell.cpp | |
parent | 9dad3d2a99c678a52e8c1269a666dd044391bbe3 (diff) |
Compile fix.
Whoever pushed that, *PLEASE* do a test compile before pushing.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r-- | src/game/Spell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 9cf135b113d..229f40bb3c1 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -3001,7 +3001,7 @@ void Spell::cast(bool skipCheck) m_caster->CastSpell(m_targets.getUnitTarget() ? m_targets.getUnitTarget() : m_caster, *i, true); } // Summon Water Elemental - handling for Glyph of Eternal Water - if (m_spellInfo->id == 31687) + if (m_spellInfo->Id == 31687) if (m_caster->HasAura(70937)) m_caster->CastSpell(m_targets.getUnitTarget() ? m_targets.getUnitTarget() : m_caster, 70908, true); else |