diff --git a/Core/Controllers/GameController.cs b/Core/Controllers/GameController.cs
index 59d81ebc..dcea81eb 100644
--- a/Core/Controllers/GameController.cs
+++ b/Core/Controllers/GameController.cs
@@ -2,12 +2,21 @@ using Core.Annotations;
using Core.Models.Eft.Common;
using Core.Models.Eft.Game;
using Core.Models.Eft.Profile;
+using ILogger = Core.Models.Utils.ILogger;
namespace Core.Controllers;
[Injectable]
public class GameController
{
+ protected ILogger _logger;
+
+
+ public GameController()
+ {
+
+ }
+
///
/// Handle client/game/start
///
@@ -54,7 +63,11 @@ public class GameController
string sessionId,
GameModeRequestData requestData)
{
- throw new NotImplementedException();
+ return new()
+ {
+ GameMode = "pve",
+ BackendUrl = "127.0.0.1:6969"
+ };
}
///
diff --git a/Core/Controllers/InRaidController.cs b/Core/Controllers/InRaidController.cs
index 5c811274..758679b9 100644
--- a/Core/Controllers/InRaidController.cs
+++ b/Core/Controllers/InRaidController.cs
@@ -100,6 +100,6 @@ public class InRaidController
string url,
string sessionId)
{
- throw new NotImplementedException();
+ return _botConfig.AssaultToBossConversion.BossesToConvertToWeights.Keys.ToList();
}
}