Small conflit with Baptiste PONG

This commit is contained in:
NigeParis 2026-01-12 13:41:28 +01:00
parent 0fbe08a5cf
commit b8372c2a51

View file

@ -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);