diff options
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 39954b0107d..5c03f41def7 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2172,11 +2172,11 @@ void Aura::HandleAuraDummy(bool apply, bool Real) { Creature *totem = ObjectAccessor::GetCreature(*caster, guid); if (totem && totem->isTotem()) - totem->AddPlayerToVision((Player*)caster); + ((Player*)caster)->CastSpell(totem, 6277, true); } } else - ((Player*)caster)->RemoveFarsightTarget(); + ((Player*)caster)->StopCastingBindSight(); return; } break; |