From b8372c2a5163184a59e266ef743cd1ef1980c658 Mon Sep 17 00:00:00 2001 From: NigeParis Date: Mon, 12 Jan 2026 13:41:28 +0100 Subject: [PATCH] Small conflit with Baptiste PONG --- src/pong/src/state.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pong/src/state.ts b/src/pong/src/state.ts index 5d94cb9..1225e2d 100644 --- a/src/pong/src/state.ts +++ b/src/pong/src/state.ts @@ -223,12 +223,12 @@ class StateI { } public newPausedGame(suid1: string, suid2: string): GameId | undefined { - if ( - !this.users.has(suid1 as UserId) || - !this.users.has(suid2 as UserId) - ) { - return undefined; - } + // if ( + // !this.users.has(suid1 as UserId) || + // !this.users.has(suid2 as UserId) + // ) { + // return undefined; + // } const uid1: UserId = suid1 as UserId; const uid2: UserId = suid2 as UserId; const g = new Pong(uid1, uid2);