From 19ac3dcb40e6810d039a506f8bb69ab6b859c58e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 9 Jul 2026 16:24:29 -0400 Subject: [PATCH] bug: fix game server selection --- src/configs/game-servers.ts | 4 ++-- src/matches/match-assistant/match-assistant.service.spec.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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,