Quick answer: Subscribe to the completion event before enabling the action, or check whether the condition is already satisfied at subscribe time and complete immediately if so.

Some tutorial steps never advance because the player did the action in the brief gap before the step finished wiring up its listener. The event fired into the void. Subscribe first, then enable the action, and re-check current state on subscribe.

How to fix it

1. Subscribe before enabling the action

Connect the completion signal before you let the player perform the action, so there is no window where the action can fire without a listener attached.

2. Re-check state on subscribe

When the step starts, immediately test whether the completion condition is already met, and complete the step now if it is, covering the race where the action happened first.

3. Avoid deferring the wire-up

Do not delay listener attachment behind an animation or a deferred call. If you must, gate the action behind the same delay so it cannot happen before the listener is live.

Catching the ones you can't reproduce

The hardest version of this to fix is the one you can't reproduce — it only happens on a player's hardware, OS, driver, or save state, under conditions that simply aren't present on your machine. A report that says “it crashed” or “it froze” gives you nothing to act on, so the bug survives release after release while quietly costing you players.

Automatic error capture closes that gap. Each failure arrives with its full stack trace, the device and OS, the build number, and a breadcrumb trail of what the player did right before it broke, so even a failure you have never seen becomes a specific, reproducible issue. Fold identical failures into one signature ranked by how many players each hits, and your worklist sorts itself worst-first instead of arriving as a stream of vague complaints.

This is where a tool like Bugnet earns its place. Its SDK captures every Godot error automatically with the full stack trace plus device, OS, memory, build, and game-state context, folds duplicates into one grouped issue with an occurrence count, and ties each to the build it first appeared on — so you fix the problem that hurts the most players first and confirm it is gone when its signature disappears from the next release.

The errors you never hear about are the ones quietly costing you players. Visibility turns them into a worklist.