diff --git a/Source/Game/Spells/SpellEffects.cs b/Source/Game/Spells/SpellEffects.cs index 0c56a2f0e..a49f5bccb 100644 --- a/Source/Game/Spells/SpellEffects.cs +++ b/Source/Game/Spells/SpellEffects.cs @@ -5578,10 +5578,10 @@ namespace Game.Spells return; Unit unitCaster = GetUnitCasterForEffectHandlers(); - if (unitCaster == null || unitTarget == null || !unitTarget.IsPlayer()) + if (unitCaster == null || !unitCaster.IsPlayer()) return; - Conversation.CreateConversation((uint)effectInfo.MiscValue, unitCaster, unitTarget.GetPosition(), unitTarget.GetGUID(), GetSpellInfo()); + Conversation.CreateConversation((uint)effectInfo.MiscValue, unitCaster, destTarget.GetPosition(), unitCaster.GetGUID(), GetSpellInfo()); } [SpellEffectHandler(SpellEffectName.SendChatMessage)]