mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 10:53:31 +00:00
Fix prettier
This commit is contained in:
@@ -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 =>
|
||||
|
||||
Reference in New Issue
Block a user