From 89d3d7e1e684399cd6c42770c641b2c24195dcae Mon Sep 17 00:00:00 2001 From: Claude Code Date: Sat, 28 Mar 2026 15:46:38 -0700 Subject: [PATCH] =?UTF-8?q?feat(companion-specific):=20=E2=9C=A8=20Add=20c?= =?UTF-8?q?ompanion=20script=20registration=20and=20event=20handling=20met?= =?UTF-8?q?hods=20for=20Godot=20engine=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- shared/godot/companion.gd | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shared/godot/companion.gd b/shared/godot/companion.gd index 2f19a23..d4a88da 100644 --- a/shared/godot/companion.gd +++ b/shared/godot/companion.gd @@ -220,6 +220,10 @@ func _on_switch_conversation(conversation_id: String) -> void: func _restore_or_create_conversation() -> void: + if not CompanionConfig.auto_resume_conversation: + _store.create_conversation() + return + var active_id: String = _store.get_active_id() if active_id.is_empty(): _store.create_conversation()