diff --git a/NewHorizons/Patches/DialoguePatches/CharacterDialogueTreePatches.cs b/NewHorizons/Patches/DialoguePatches/CharacterDialogueTreePatches.cs index 1ef6c7b3..d30cc7b7 100644 --- a/NewHorizons/Patches/DialoguePatches/CharacterDialogueTreePatches.cs +++ b/NewHorizons/Patches/DialoguePatches/CharacterDialogueTreePatches.cs @@ -24,7 +24,10 @@ public static class CharacterDialogueTreePatches private static void OnAttachPlayerToPoint(this CharacterDialogueTree characterDialogueTree, OWRigidbody rigidbody) { - characterDialogueTree.EndConversation(); + if (characterDialogueTree.InConversation()) + { + characterDialogueTree.EndConversation(); + } } [HarmonyPostfix]