diff --git a/src/configs/game-servers.ts b/src/configs/game-servers.ts index c46eab29..cf6be35c 100644 --- a/src/configs/game-servers.ts +++ b/src/configs/game-servers.ts @@ -8,8 +8,8 @@ export default (): { // escape hatch for custom or mirrored images and takes precedence over it. serverImageOverride: process.env.SERVER_IMAGE || null, pluginRuntimeImages: { - swiftlys2: "ghcr.io/5stackgg/swiftly-game-server", - counterstrikesharp: "ghcr.io/5stackgg/game-server", + swiftlys2: "ghcr.io/5stackgg/game-server-sw", + counterstrikesharp: "ghcr.io/5stackgg/game-server-css", }, gameStreamerImage: process.env.GAME_STREAMER_IMAGE || diff --git a/src/matches/match-assistant/match-assistant.service.spec.ts b/src/matches/match-assistant/match-assistant.service.spec.ts index 9a31458a..9f130984 100644 --- a/src/matches/match-assistant/match-assistant.service.spec.ts +++ b/src/matches/match-assistant/match-assistant.service.spec.ts @@ -59,7 +59,7 @@ describe("MatchAssistantService", () => { loggingService as any, { resolveGameServerPluginImage: jest.fn( - async () => "ghcr.io/5stackgg/swiftly-game-server:latest", + async () => "ghcr.io/5stackgg/game-server-sw:latest", ), resolvePluginRuntime: jest.fn(async () => "swiftlys2"), } as any,