diff options
author | Spp <none@none> | 2010-04-07 23:25:02 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-07 23:25:02 +0200 |
commit | 2454c290b84e04bd0321ca94e0be8c8dc7eedbe8 (patch) | |
tree | b744629b9fc3004bcb717c5f95a10724df3a6a62 /src/game/Spell.h | |
parent | 49d05ba9aa1cd5c1f3ae96546283e6d03a037ff7 (diff) |
Code Style (game + scripts only):
"==" --> " == " (when needed)
--HG--
branch : trunk
Diffstat (limited to 'src/game/Spell.h')
-rw-r--r-- | src/game/Spell.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Spell.h b/src/game/Spell.h index 17235c77961..f3065f8c425 100644 --- a/src/game/Spell.h +++ b/src/game/Spell.h @@ -189,7 +189,7 @@ class SpellCastTargets } } - bool IsEmpty() const { return m_GOTargetGUID==0 && m_unitTargetGUID==0 && m_itemTarget==0 && m_CorpseTargetGUID==0; } + bool IsEmpty() const { return m_GOTargetGUID == 0 && m_unitTargetGUID == 0 && m_itemTarget == 0 && m_CorpseTargetGUID == 0; } bool HasSrc() const { return m_intTargetFlags & FLAG_INT_SRC_LOC; } bool HasDst() const { return m_intTargetFlags & FLAG_INT_DST_LOC; } bool HasTraj() const { return m_speed != 0; } |