Fix prettier

This commit is contained in:
Mattia Migliorini
2026-03-19 11:56:31 +01:00
parent d436a5d5d4
commit 968a98a5ac
+8 -1
View File
@@ -172,7 +172,14 @@ describe("assignTeams", () => {
describe("computeClanTeamName", () => {
const human = (id: string, clan?: string): PlayerInfo => {
const name = clan ? `[${clan}]Player${id}` : `Player${id}`;
return new PlayerInfo(name, PlayerType.Human, null, id, false, clan ?? null);
return new PlayerInfo(
name,
PlayerType.Human,
null,
id,
false,
clan ?? null,
);
};
const bot = (id: string): PlayerInfo =>