bugfix: humans start with zero troops on teams, also removed manpower argument to addPlayer()

This commit is contained in:
Evan
2025-04-04 10:03:00 -07:00
parent 51bbf2becd
commit 924ca2c69e
8 changed files with 13 additions and 23 deletions
+2 -2
View File
@@ -50,8 +50,8 @@ describe("SAM", () => {
null,
"attacker_id",
);
game.addPlayer(defender_info, 1000);
game.addPlayer(attacker_info, 1000);
game.addPlayer(defender_info);
game.addPlayer(attacker_info);
game.addExecution(
new SpawnExecution(game.player(defender_info.id).info(), game.ref(1, 1)),