Core/Conversations: Replace _participants with generic personal object implementation

Port From (https://github.com/TrinityCore/TrinityCore/commit/3fe9b0a2961b60509d11dd38a90e7b7657b68084)
This commit is contained in:
hondacrx
2021-10-10 09:55:16 -04:00
parent c73060fde0
commit a1459617e6
4 changed files with 8 additions and 22 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ namespace Game.Chat
return false;
}
return Conversation.CreateConversation(conversationEntry, target, target, new List<ObjectGuid>() { target.GetGUID() }) != null;
return Conversation.CreateConversation(conversationEntry, target, target, target.GetGUID()) != null;
}
[Command("entervehicle", RBACPermissions.CommandDebugEntervehicle)]