aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Spells/SpellEffects.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2021-10-09 13:30:47 +0200
committerShauren <shauren.trinity@gmail.com>2021-10-09 13:30:47 +0200
commit3fe9b0a2961b60509d11dd38a90e7b7657b68084 (patch)
tree3a6e47aa340cca83f3bc2476cc1cdc896290c087 /src/server/game/Spells/SpellEffects.cpp
parent3322f3481945883abd7252d5c38ef70d6af9014d (diff)
Core/Conversations: Replace _participants with generic personal object implementation
Diffstat (limited to 'src/server/game/Spells/SpellEffects.cpp')
-rw-r--r--src/server/game/Spells/SpellEffects.cpp4
1 files changed, 2 insertions, 2 deletions
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()