From 74d83c51f66ec2cf1fe44e5c4d13e2ce2f588dc3 Mon Sep 17 00:00:00 2001 From: gbtami Date: Wed, 25 Dec 2024 19:52:35 +0100 Subject: [PATCH] Add 10+5 to auto-pairing --- client/lobby.ts | 1 + tests/test_auto_pairing.py | 1 + 2 files changed, 2 insertions(+) diff --git a/client/lobby.ts b/client/lobby.ts index f4a375f55..e894fc033 100644 --- a/client/lobby.ts +++ b/client/lobby.ts @@ -28,6 +28,7 @@ const autoPairingTCs: [number, number, number][] = [ [3, 0, 0], [3, 2, 0], [5, 3, 0], + [10, 5, 0], [2, 15, 1], [5, 15, 1], ]; diff --git a/tests/test_auto_pairing.py b/tests/test_auto_pairing.py index 837715f36..4ecb9fe73 100644 --- a/tests/test_auto_pairing.py +++ b/tests/test_auto_pairing.py @@ -30,6 +30,7 @@ (3, 0, 0), (3, 2, 0), (5, 3, 0), + (10, 5, 0), (2, 15, 1), (5, 15, 1), ]