Skip to content

Commit

Permalink
Core/Auras: Fixed SPELL_AURA_CAST_WHILE_WALKING
Browse files Browse the repository at this point in the history
  • Loading branch information
Shauren committed Jun 7, 2013
1 parent efb4fb4 commit bd6ea75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Spells/Auras/SpellAuras.cpp
Expand Up @@ -964,7 +964,7 @@ bool Aura::CanBeSaved() const

bool Aura::CanBeSentToClient() const
{
return !IsPassive() || GetSpellInfo()->HasAreaAuraEffect() || HasEffectType(SPELL_AURA_ABILITY_IGNORE_AURASTATE);
return !IsPassive() || GetSpellInfo()->HasAreaAuraEffect() || HasEffectType(SPELL_AURA_ABILITY_IGNORE_AURASTATE) || HasEffectType(SPELL_AURA_CAST_WHILE_WALKING);
}

void Aura::UnregisterSingleTarget()
Expand Down

4 comments on commit bd6ea75

@Sar777
Copy link
Contributor

@Sar777 Sar777 commented on bd6ea75 Jun 7, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thx

@SkyFire
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ProjectSkyfire/SkyFire.406a@7e46fa6
Tuxity did it first ;)

@Shauren
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SkyFire that might indeed be the case but I'm not watching any other repos :P

@Walkum
Copy link
Contributor

@Walkum Walkum commented on bd6ea75 Jun 11, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SkyFire feel like 5 years old

Please sign in to comment.