From e3fad7064b4a3eb5b83b2c606b5d6e5ce5fb339a Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Tue, 1 Sep 2026 18:13:53 +0100 Subject: [PATCH] fix(training): restore ai reward script parsing --- Game/scripts/ship_ai_controller.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Game/scripts/ship_ai_controller.gd b/Game/scripts/ship_ai_controller.gd index d11fe7d5..0cc2ea86 100644 --- a/Game/scripts/ship_ai_controller.gd +++ b/Game/scripts/ship_ai_controller.gd @@ -626,7 +626,7 @@ func _on_ship_body_entered(body: Node) -> void: if ball.global_position.y > AIR_TOUCH_HEIGHT: _air_touches += 1 if alignment >= PRODUCTIVE_AIR_TOUCH_ALIGNMENT: - _productive_air_touches += 1 + _productive_air_touches += 1 static func team_touch_credit(touch_payout: float, weight: float, teammate_count: int) -> float: