Skip to content

Commit

Permalink
Core/Items: Shadowsong Panther no longer trys to attack enemy players…
Browse files Browse the repository at this point in the history
… and correctly follows the player.
  • Loading branch information
robinsch authored and henhouse committed Jul 16, 2015
1 parent fdca1a1 commit 6113628
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/server/game/Spells/SpellEffects.cpp
Expand Up @@ -3483,6 +3483,13 @@ void Spell::EffectSummonType(uint32 i)

TempSummon *summon = NULL;

// Shadowsong Panther
if (properties->Id == 407)
{
EffectSummonCritter(i);
return;
}

switch (properties->Category)
{
case SUMMON_CATEGORY_WILD:
Expand Down

0 comments on commit 6113628

Please sign in to comment.