feat: update

This commit is contained in:
2026-06-11 18:28:25 +08:00
parent 8520f9db3c
commit 8a2fb36a98
65 changed files with 4407 additions and 572 deletions
+3 -3
View File
@@ -354,9 +354,9 @@ func _run_tutorial() -> void:
if spawned_bot.get("is_knock_mode") == true:
break
# Fallback: if player's attack mode deactivated early despite having timer left, they likely successfully rammed
var t = local_player.get("attack_mode_timer")
if local_player.get("is_attack_mode") == false and t != null and t > 0.0 and t < 3.0:
# Fallback: if player's charged strike deactivated early despite having timer left, they likely successfully rammed
var t = local_player.get("charged_strike_timer")
if local_player.get("is_charged_strike") == false and t != null and t > 0.0 and t < 3.0:
break
await get_tree().process_frame