From abd913e4dffa5404025490e1480bd845d85398a2 Mon Sep 17 00:00:00 2001 From: Martin Felis Date: Sat, 16 Nov 2024 22:01:55 +0100 Subject: [PATCH] Warning cleanup in InteractionSystem.gd. --- systems/InteractionSystem.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/InteractionSystem.gd b/systems/InteractionSystem.gd index 8bc4ba6..c77b2b7 100644 --- a/systems/InteractionSystem.gd +++ b/systems/InteractionSystem.gd @@ -7,13 +7,13 @@ func _ready(): if not DialogueManager.is_connected("dialogue_ended", InteractionSystem.stop_conversation): DialogueManager.connect("dialogue_ended", InteractionSystem.stop_conversation) -func start_conversation(resource: DialogueResource) -> void: +func start_conversation(_resource: DialogueResource) -> void: is_conversation_active = true if player: player.is_input_blocked = true -func stop_conversation(resource: DialogueResource) -> void: +func stop_conversation(_resource: DialogueResource) -> void: is_conversation_active = false if player: