aboutsummaryrefslogtreecommitdiff
path: root/src/game/Level3.cpp
diff options
context:
space:
mode:
authorQAston <none@none>2009-04-29 18:05:39 +0200
committerQAston <none@none>2009-04-29 18:05:39 +0200
commit7897fc16f0abb6d2043a595352236836070b8cd3 (patch)
tree897cbae941382c5321eac31ab2d3bca7bfa7d11f /src/game/Level3.cpp
parentc5f7ab377db14e48d10fb4eab4ea6fffa65b7763 (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.cpp4
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;
}