This commit is contained in:
Aotumuri
2025-05-17 17:47:36 +09:00
parent 2f7e24cf46
commit d1ca65eb15
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -302,7 +302,7 @@ export class PlayerInfo {
public readonly clan: string | null;
constructor(
public readonly pattern: string | undefined,
public readonly pattern: string | null | undefined,
public readonly flag: string | undefined,
public readonly name: string,
public readonly playerType: PlayerType,
+1 -1
View File
@@ -174,7 +174,7 @@ export class PlayerView {
return this.data.flag;
}
pattern(): string {
pattern(): string | undefined | null {
return this.data.pattern;
}