From 3fe9b0a2961b60509d11dd38a90e7b7657b68084 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sat, 9 Oct 2021 13:30:47 +0200 Subject: Core/Conversations: Replace _participants with generic personal object implementation --- src/server/game/Spells/SpellEffects.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/game/Spells/SpellEffects.cpp') diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index d92a72f0cb8..d94d3163a20 100644 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -5543,7 +5543,7 @@ void Spell::EffectCreateConversation() if (!unitCaster || !m_targets.HasDst()) return; - Conversation::CreateConversation(effectInfo->MiscValue, unitCaster, destTarget->GetPosition(), { GetCaster()->GetGUID() }, GetSpellInfo()); + Conversation::CreateConversation(effectInfo->MiscValue, unitCaster, destTarget->GetPosition(), ObjectGuid::Empty, GetSpellInfo()); } void Spell::EffectAddGarrisonFollower() @@ -5884,7 +5884,7 @@ void Spell::EffectCreatePrivateConversation() if (!unitCaster || !unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER) return; - Conversation::CreateConversation(effectInfo->MiscValue, unitCaster, unitTarget->GetPosition(), { unitTarget->GetGUID() }, GetSpellInfo()); + Conversation::CreateConversation(effectInfo->MiscValue, unitCaster, unitTarget->GetPosition(), unitTarget->GetGUID(), GetSpellInfo()); } void Spell::EffectSendChatMessage() -- cgit v1.2.3