Skip to content

Commit

Permalink
Fix crash on festergut caused by a5997ea
Browse files Browse the repository at this point in the history
  • Loading branch information
Greymane committed Aug 9, 2011
1 parent 9569d28 commit 1c95678
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/server/game/Spells/Auras/SpellAuras.cpp
Expand Up @@ -209,6 +209,9 @@ void AuraApplication::BuildUpdatePacket(ByteBuffer& data, bool remove) const

void AuraApplication::HandleEffect(uint8 effIndex, bool apply)
{
if (!effIndex || !apply)
return;

if (GetRemoveMode() || GetBase()->IsRemoved())
return;

Expand Down

0 comments on commit 1c95678

Please sign in to comment.