don't remove player on disconnect

This commit is contained in:
Nathaniel Tampus
2023-03-05 19:03:58 +08:00
parent 69fb7a7c9d
commit 5699663dd2
2 changed files with 18 additions and 18 deletions

1
types/index.d.ts vendored
View File

@@ -15,4 +15,5 @@ export interface User {
id?: number | string; // string for guest IDs
name?: string;
email?: string;
connected?: boolean; // mainly for players, not spectators
}