From 4ae935cb991e39fa8e7bdae21bca261cbed514b2 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 20:32:55 +0200 Subject: [PATCH] Update dialogue comparison in runtime-host.ts --- src/runtime-three/runtime-host.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/runtime-three/runtime-host.ts b/src/runtime-three/runtime-host.ts index 89bc2fd2..166e4b40 100644 --- a/src/runtime-three/runtime-host.ts +++ b/src/runtime-three/runtime-host.ts @@ -3074,7 +3074,11 @@ export class RuntimeHost { this.currentDialogue?.lineCount === dialogue?.lineCount && this.currentDialogue?.speakerName === dialogue?.speakerName && this.currentDialogue?.text === dialogue?.text && - this.currentDialogue?.title === dialogue?.title + this.currentDialogue?.title === dialogue?.title && + this.currentDialogue?.source.kind === dialogue?.source.kind && + this.currentDialogue?.source.sourceEntityId === + dialogue?.source.sourceEntityId && + this.currentDialogue?.source.linkId === dialogue?.source.linkId ) { return; }