From b2a2af115988a07d7b7a29a282b0edcefda9ff04 Mon Sep 17 00:00:00 2001 From: Tiger Jove Date: Sun, 18 Jan 2026 07:30:38 +0100 Subject: [PATCH] chore: whitespace --- src/logic-scenes/board/card-board.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/logic-scenes/board/card-board.gd b/src/logic-scenes/board/card-board.gd index 585b375..b0f05ed 100644 --- a/src/logic-scenes/board/card-board.gd +++ b/src/logic-scenes/board/card-board.gd @@ -94,7 +94,7 @@ func _process(delta: float): for note in notes: # Skip all dragged and already attached notes if note.is_attached: continue - if note.is_dragged:continue + if note.is_dragged: continue # Magnetically move all notes to where they ought to be on screen note.position = _smooth(note.position, zone_position, delta) @@ -224,7 +224,7 @@ func handle_mouse_button(input: InputEventMouseButton, to_handle = selection) -> ## Starts a drag operation for the given draggable -func _start_drag(draggable: Draggable) -> void: +func _start_drag(draggable: Dragg able) -> void: selection = draggable current_context = DRAG