From 9459b7fb563caae520bdf8d11da9b070ebff45e9 Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Sun, 1 May 2022 10:34:36 -0700 Subject: move valid points check to match file --- web/dartboat_wasm.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'web/dartboat_wasm.c') diff --git a/web/dartboat_wasm.c b/web/dartboat_wasm.c index b4d232a..658277d 100644 --- a/web/dartboat_wasm.c +++ b/web/dartboat_wasm.c @@ -309,14 +309,7 @@ void update_player_avg(int pn, int n_darts) EMSCRIPTEN_KEEPALIVE void user_visit(int points) { - if (points < 0 || points > state->active_leg->rem || - state->active_leg->rem - points == 1 || - points > 180 || points == 179 || points == 178 || points == 176 || - points == 175 || points == 173 || points == 172 || points == 169 || - points == 166 || points == 163 || - (state->active_leg->rem - points == 0 && - (points > 170 || points == 168 || points == 165 || points == 162 || - points == 159))) { + if (!is_points_valid(points, state->active_leg->rem)) { EM_ASM(oi()); return; } -- cgit v1.2.3-70-g09d2