Update dialogue comparison in runtime-host.ts

This commit is contained in:
2026-04-14 20:32:55 +02:00
parent 37494525c6
commit 4ae935cb99

View File

@@ -3074,7 +3074,11 @@ export class RuntimeHost {
this.currentDialogue?.lineCount === dialogue?.lineCount && this.currentDialogue?.lineCount === dialogue?.lineCount &&
this.currentDialogue?.speakerName === dialogue?.speakerName && this.currentDialogue?.speakerName === dialogue?.speakerName &&
this.currentDialogue?.text === dialogue?.text && 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; return;
} }