From 9d0186265031ecaa6cffa6e0446edafb13980d6f Mon Sep 17 00:00:00 2001 From: variablevince <24507472+VariableVince@users.noreply.github.com> Date: Mon, 27 Oct 2025 23:08:19 +0100 Subject: [PATCH] Prettier --- tests/PlayerImpl.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/PlayerImpl.test.ts b/tests/PlayerImpl.test.ts index d247af9be..616f1d92a 100644 --- a/tests/PlayerImpl.test.ts +++ b/tests/PlayerImpl.test.ts @@ -1,3 +1,4 @@ +import { SpawnExecution } from "../src/core/execution/SpawnExecution"; import { Game, Player, @@ -6,7 +7,6 @@ import { UnitType, } from "../src/core/game/Game"; import { setup } from "./util/Setup"; -import { SpawnExecution } from "../src/core/execution/SpawnExecution"; let game: Game; let player: Player; @@ -25,7 +25,6 @@ describe("PlayerImpl", () => { ], ); - // Add spawn executions to give players territory game.addExecution( new SpawnExecution(game.player("player_id").info(), game.ref(0, 0)), new SpawnExecution(game.player("other_id").info(), game.ref(20, 20)),