auto-git:

[change] src/runtime-three/runtime-host.ts
This commit is contained in:
2026-04-25 03:04:07 +02:00
parent 7b6ff9048f
commit 97a2a960d3

View File

@@ -4519,7 +4519,15 @@ export class RuntimeHost {
return;
}
if (
dialogue === null ||
this.activeDialogueAttentionState?.npcEntityId !== dialogue.npcEntityId
) {
this.activeDialogueAttentionState = null;
}
this.currentDialogue = dialogue;
this.setDialoguePauseActive(dialogue !== null);
this.runtimeDialogueHandler?.(dialogue);
}