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: