Merge branch 'main' into bomb-confirmation

This commit is contained in:
Ryan
2026-01-08 00:40:06 +00:00
committed by GitHub
78 changed files with 1471 additions and 1213 deletions
+7 -1
View File
@@ -1,6 +1,6 @@
import { JWK } from "jose";
import { GameEnv, ServerConfig } from "../../src/core/configuration/Config";
import { GameMapType } from "../../src/core/game/Game";
import { GameMapType, PublicGameModifiers } from "../../src/core/game/Game";
import { GameID } from "../../src/core/Schemas";
export class TestServerConfig implements ServerConfig {
@@ -82,4 +82,10 @@ export class TestServerConfig implements ServerConfig {
gitCommit(): string {
throw new Error("Method not implemented.");
}
getRandomPublicGameModifiers(): PublicGameModifiers {
return { isCompact: false, isRandomSpawn: false };
}
supportsCompactMapForTeams(map: GameMapType): boolean {
throw new Error("Method not implemented.");
}
}