Skip to content

v4.4.5

Choose a tag to compare

@SebastienXtraLife SebastienXtraLife released this 08 Oct 09:34
· 4 commits to master since this release

It's now possible to configure different Steam IDs for the same game to log into Steam depending on the game variant (handles both below formats).

  • Usual backend "no variant" game config format:
game: {
    config: {
        steam: {
            appId: 1234,
            webApiKey: 'KEY'
        }
    }
};
  • New backend "multi-variants" game config format: (requires to send a { gameVariant: "<variant>" } login / convert account option from the game client)
game: {
    config: {
        steam: {
            variantA: {
                appId: 1234,
                webApiKey: 'KEY_A'
            },
            variantB: {
                appId: 5678,
                webApiKey: 'KEY_B'
            }
        }
    }
};