[12671] Fix compile

Signed-off-by: Dramacydal <PulLumBerMal@gmail.com>
This commit is contained in:
Dramacydal 2013-08-19 16:25:55 +03:00 committed by Antz
parent 3d1d3805a2
commit 5083596e26
3 changed files with 2 additions and 12 deletions

View file

@ -7396,13 +7396,7 @@ bool Spell::IsNeedSendToClient() const
bool Spell::IsTriggeredSpellWithRedundentCastTime() const
{
<<<<<<< HEAD
return m_triggeredByAuraSpell || m_triggeredBySpellInfo ||
// possible not need after above check?
m_IsTriggeredSpell && (m_spellInfo->GetManaCost() || m_spellInfo->GetManaCostPercentage());
=======
return m_IsTriggeredSpell && (m_spellInfo->manaCost || m_spellInfo->ManaCostPercentage);
>>>>>>> 47aa389... [12468] Use normal cast time for triggered spells by default
return m_IsTriggeredSpell && (m_spellInfo->GetManaCost() || m_spellInfo->GetManaCostPercentage());
}
bool Spell::HaveTargetsForEffect(SpellEffectIndex effect) const