diff --git a/RefreshTests.GameServer/GameServer/TestRefreshGameServer.cs b/RefreshTests.GameServer/GameServer/TestRefreshGameServer.cs index 3f6211d8..485affa3 100644 --- a/RefreshTests.GameServer/GameServer/TestRefreshGameServer.cs +++ b/RefreshTests.GameServer/GameServer/TestRefreshGameServer.cs @@ -28,7 +28,7 @@ protected override void SetupConfiguration() { this.Server.AddConfig(this._config = new GameServerConfig()); this.Server.AddConfig(new RichPresenceConfig()); - this.Server.AddConfig(new IntegrationConfig()); + this.Server.AddConfig(this._integrationConfig = new IntegrationConfig()); this.Server.AddConfig(new ContactInfoConfig()); } @@ -78,6 +78,7 @@ protected override void SetupServices() // Must always be last, see comment in RefreshGameServer this.Server.AddService(); + this.Server.AddService(new PresenceService(this.Logger, this._integrationConfig!)); } [Pure]