diff --git a/Core/Controllers/GameController.cs b/Core/Controllers/GameController.cs index 1bb8a546..85b681cb 100644 --- a/Core/Controllers/GameController.cs +++ b/Core/Controllers/GameController.cs @@ -241,7 +241,15 @@ public class GameController /// public List GetServer(string sessionId) { - throw new NotImplementedException(); + return + [ + new ServerDetails + { + Ip = _httpConfig.BackendIp, + Port = _httpConfig.BackendPort + } + + ]; } /// @@ -266,7 +274,11 @@ public class GameController /// public CheckVersionResponse GetValidGameVersion(string sessionId) { - throw new NotImplementedException(); + return new CheckVersionResponse + { + IsValid = true, + LatestVersion = _coreConfig.CompatibleTarkovVersion + }; } ///