diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-09-09 19:22:30 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-09-09 19:22:30 +0200 |
commit | 97a92036d153e1c47f3f35fa7ec713fb9b50e699 (patch) | |
tree | 9088f2325842bf4b011178c81ad52e3c0c270df4 /src | |
parent | 53002dfe03012e5f725016da1ac882f9a80e55b6 (diff) |
Core/Spells: Fixed typo in previous commit
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/Spell.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp index cdf17b05040..fea299cf163 100755 --- a/src/server/game/Spells/Spell.cpp +++ b/src/server/game/Spells/Spell.cpp @@ -4280,8 +4280,7 @@ void Spell::SendChannelStart(uint32 duration) uint64 channelTarget = m_targets.GetObjectTargetGUID(); if (!channelTarget && !m_spellInfo->NeedsExplicitUnitTarget()) if (m_UniqueTargetInfo.size() + m_UniqueGOTargetInfo.size() == 1) // this is for TARGET_SELECT_CATEGORY_NEARBY - if (!m_UniqueTargetInfo.empty()) - channelTarget = !m_UniqueTargetInfo.empty() ? m_UniqueTargetInfo.front().targetGUID : m_UniqueGOTargetInfo.front().targetGUID; + channelTarget = !m_UniqueTargetInfo.empty() ? m_UniqueTargetInfo.front().targetGUID : m_UniqueGOTargetInfo.front().targetGUID; WorldPacket data(MSG_CHANNEL_START, (8+4+4)); data.append(m_caster->GetPackGUID()); |