diff options
author | treeston <treeston.mmoc@gmail.com> | 2016-05-12 21:42:31 +0200 |
---|---|---|
committer | treeston <treeston.mmoc@gmail.com> | 2016-05-12 21:42:31 +0200 |
commit | b52a6b857097ff0e540fa0b560df2cc61546603d (patch) | |
tree | bffd45826f4b8a20a1e00780a18bc6aae5716242 /src | |
parent | ab0abdbde5fb70a88aba4ec05291ec717444abe8 (diff) |
This discussion is more effort than it takes to change it.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/AI/CoreAI/UnitAI.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/AI/CoreAI/UnitAI.h b/src/server/game/AI/CoreAI/UnitAI.h index 714adca8f5b..20a986c0483 100644 --- a/src/server/game/AI/CoreAI/UnitAI.h +++ b/src/server/game/AI/CoreAI/UnitAI.h @@ -242,7 +242,7 @@ class TC_GAME_API UnitAI void DoAddAuraToAllHostilePlayers(uint32 spellid); void DoCast(uint32 spellId); void DoCast(Unit* victim, uint32 spellId, bool triggered = false); - inline void DoCastSelf(uint32 spellId, bool triggered = false) { DoCast(me, spellId, triggered); } + void DoCastSelf(uint32 spellId, bool triggered = false) { DoCast(me, spellId, triggered); } void DoCastToAllHostilePlayers(uint32 spellid, bool triggered = false); void DoCastVictim(uint32 spellId, bool triggered = false); void DoCastAOE(uint32 spellId, bool triggered = false); |