Commit 2069a8f4 authored by nanahira's avatar nanahira

fix

parent c9253c6b
Pipeline #42165 passed with stages
in 2 minutes and 28 seconds
...@@ -592,7 +592,10 @@ export class AppService { ...@@ -592,7 +592,10 @@ export class AppService {
const start: string = body.start; const start: string = body.start;
const end: string = body.end; const end: string = body.end;
const arena: string = body.arena || 'entertain'; const arena: string = body.arena || 'entertain';
if (userscoreA == -5 && userscoreB == -5) { if (
(userscoreA == -5 && userscoreB == -5) ||
(userscoreA == -9 && userscoreB == -9)
) {
return null; return null;
} }
if (!usernameA || !usernameB) { if (!usernameA || !usernameB) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment