Skip to content

Commit

Permalink
fix player talk events
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt-Carey committed May 8, 2024
1 parent a8b9795 commit 7acf6c6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ void UInworldSession::HandlePacket(const FInworldWrappedPacket& WrappedPacket)
{
(*TargetCharacter)->HandlePacket(WrappedPacket);
}

}
if (Source.Type == EInworldActorType::PLAYER)
{
if (TArray<FString>* AgentIds = ConversationIdToAgentIds.Find(ConversationId))
{
for (const FString& AgentId : *AgentIds)
Expand Down

0 comments on commit 7acf6c6

Please sign in to comment.