Run Re-Do

This commit is contained in:
2026-07-02 20:41:43 -07:00
parent 86575dd5bc
commit 16e396841e
188 changed files with 8291 additions and 2429 deletions
@@ -215,13 +215,9 @@ namespace ProjectM.Client
}
return found;
}
// base gate (go) lives in the base region; expedition gate (return) lives past the region split.
bool wantBase = kind == OnboardingStepMath.PointerBaseGate;
foreach (var lt in SystemAPI.Query<RefRO<LocalTransform>>().WithAll<ExpeditionGate>())
{
var p = lt.ValueRO.Position;
if ((p.x < ExpeditionRegionXMin) == wantBase) { target = p; return true; }
}
// Step 11: the walk-in ExpeditionGate was RETIRED (the ready-check launches runs), so gate pointers
// have no world target — hide the arrow; the step text still teaches. Step 14's HUD pass re-points
// onboarding at the READY panel instead.
return false;
}