refactor: remove player list workaround

This commit is contained in:
eneller
2026-02-01 12:01:42 +01:00
parent 2999d8eee7
commit 8493e742e9
4 changed files with 5 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ export class Player{
return [this.name, values];
}
valueOf(): string{
toString(): string{
return this.name;
}
static deSerialize(name: string, values: string): Player{