This commit is contained in:
variablevince
2025-10-27 23:08:19 +01:00
parent 1b04403203
commit 9d01862650
+1 -2
View File
@@ -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)),