Fixed extra core in map submission

This commit is contained in:
Anuken 2025-09-19 13:22:15 -04:00
parent bf051fa7bc
commit 7a6f6c84dd
2 changed files with 1 additions and 1 deletions

View file

@ -942,7 +942,7 @@ public class ApplicationTests{
}
}
assertEquals(1, Team.sharded.cores().size, "Sector must have one core: " + zone);
assertEquals(1, Team.sharded.cores().size, "Sector must have one core: " + zone + " (" + Team.sharded.cores() + ")");
assertTrue(hasSpawnPoint, "Sector \"" + zone.name + "\" has no spawn points.");
assertTrue(spawner.countSpawns() > 0 || (state.rules.attackMode && state.rules.waveTeam.data().hasCore()), "Sector \"" + zone.name + "\" has no enemy spawn points: " + spawner.countSpawns());