From c5ca61912a88aeb8ae727c0d217b7dc41efeb00d Mon Sep 17 00:00:00 2001 From: rodri Date: Sat, 7 Oct 2023 21:45:55 +0000 Subject: tell the spectator who's playing the moment they join. --- andy.c | 3 --- btsd.c | 7 +++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/andy.c b/andy.c index 92a43f3..17184a2 100644 --- a/andy.c +++ b/andy.c @@ -1,15 +1,12 @@ #include #include -#include #include #include #include -#include #include #include #include "dat.h" #include "fns.h" -#include "mixer.h" /* Nexus-9 technology from The Rosen Association */ diff --git a/btsd.c b/btsd.c index 501e624..4fb4019 100644 --- a/btsd.c +++ b/btsd.c @@ -559,11 +559,14 @@ Nocmd: p->battle = m; chanprint(p->io.out, "watching %d %s %s\n", m->id, m->pl[0]->name, m->pl[1]->name); - for(i = 0; i < nelem(m->pl); i++) + for(i = 0; i < nelem(m->pl); i++){ if(m->pl[i]->state != Outlaying){ bitpackmap(buf, sizeof buf, m->pl[i]); chanprint(p->io.out, "outlayed %d %.*[\n", i, sizeof buf, buf); } + if(m->pl[i]->state == Playing) + chanprint(p->io.out, "plays %d\n", i); + } }else if(strcmp(msg->body, "leave seat") == 0){ leaveseat(&stands, p); p->state = Waiting0; @@ -619,7 +622,7 @@ matchmaker(void *) pl[0]->battle = m; pl[1]->battle = m; i = 0; - + proccreate(battleproc, m, mainstacksize); } a[QUE].v = &pl[i]; -- cgit v1.2.3