aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/survive.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/survive.c b/src/survive.c
index 3f3b844..1786d45 100644
--- a/src/survive.c
+++ b/src/survive.c
@@ -294,6 +294,13 @@ int survive_startup(SurviveContext *ctx) {
}
}
+ // If lighthouse positions are known, broadcast them
+ for (int i = 0; i < ctx->activeLighthouses; i++) {
+ if(ctx->bsd[i].PositionSet) {
+ ctx->lighthouseposeproc(ctx, i, &ctx->bsd[i].Pose, 0);
+ }
+ }
+
return 0;
}