fix: strip all remaining tab characters from all .gd files

This commit is contained in:
xiaji
2026-05-29 22:54:01 +08:00
parent b7e734576a
commit 3ca5dbba99

View File

@@ -9,10 +9,10 @@ var controller: TrainingController
@onready var status_label: Label = $StatusLabel
func _ready() -> void:
play_button.pressed.connect(_on_play_pressed)
pass_button.pressed.connect(_on_pass_pressed)
hint_button.pressed.connect(_on_hint_pressed)
start_training()
play_button.pressed.connect(_on_play_pressed)
pass_button.pressed.connect(_on_pass_pressed)
hint_button.pressed.connect(_on_hint_pressed)
start_training()
func start_training() -> void:
controller = TrainingController.new()
@@ -70,5 +70,5 @@ func _on_game_ended(winner_team: int, reason: String) -> void:
if hand_area: hand_area.disable_input()
func _refresh_ui() -> void:
if controller and controller.game_state and hand_area:
hand_area.update_hand(controller.game_state.get_hand(0))
if controller and controller.game_state and hand_area:
hand_area.update_hand(controller.game_state.get_hand(0))