diff --git a/Source/Game/Entities/Conversation.cs b/Source/Game/Entities/Conversation.cs index 40e5e4d80..079ef108a 100644 --- a/Source/Game/Entities/Conversation.cs +++ b/Source/Game/Entities/Conversation.cs @@ -178,6 +178,12 @@ namespace Game.Entities } } + if (IsInWorld) + { + Log.outError(LogFilter.Conversation, $"Attempted to start conversation (Id: {GetEntry()}) multiple times."); + return true; // returning true to not cause delete in Conversation::CreateConversation if convo is already started in ConversationScript::OnConversationCreate + } + if (!GetMap().AddToMap(this)) return false;