diff options
author | QAston <none@none> | 2009-04-29 18:05:39 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-04-29 18:05:39 +0200 |
commit | 7897fc16f0abb6d2043a595352236836070b8cd3 (patch) | |
tree | 897cbae941382c5321eac31ab2d3bca7bfa7d11f /src/game/Level3.cpp | |
parent | c5f7ab377db14e48d10fb4eab4ea6fffa65b7763 (diff) |
*Trigger spells after dealing damage by spell.
*Take ammo for autorepeat spells.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Level3.cpp')
-rw-r--r-- | src/game/Level3.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Level3.cpp b/src/game/Level3.cpp index 11a148c6966..0b222bb9741 100644 --- a/src/game/Level3.cpp +++ b/src/game/Level3.cpp @@ -4094,9 +4094,9 @@ bool ChatHandler::HandleAuraCommand(const char* args) eff_mask|=1<<i; } } + Aura *Aur = new Aura(spellInfo, eff_mask, NULL, target); + target->AddAura(Aur); } - Aura *Aur = new Aura(spellInfo, eff_mask, NULL, target); - target->AddAura(Aur); return true; } |