diff options
Diffstat (limited to 'web/web_control.c')
-rw-r--r-- | web/web_control.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/web/web_control.c b/web/web_control.c index 2890308..4495d51 100644 --- a/web/web_control.c +++ b/web/web_control.c @@ -200,7 +200,11 @@ void user_undo() l->rem += v->points; memset(v, 0, sizeof(*v)); - if (state->mode == M_PVC && state->legs[1]->n_visits > l->n_visits) { + if (state->mode == M_PVC && + ((match_opts->throws_first == 1 && + state->legs[1]->n_visits > l->n_visits) || + (match_opts->throws_first == 2 && + state->legs[1]->n_visits > l->n_visits + 1))) { struct leg *bl = state->legs[1]; bl->rem += bl->visits[--bl->n_visits].points; ++state->boat_undone; |