diff --git a/Core/Controllers/GameController.cs b/Core/Controllers/GameController.cs index 38b8d18a..1bb8a546 100644 --- a/Core/Controllers/GameController.cs +++ b/Core/Controllers/GameController.cs @@ -252,7 +252,10 @@ public class GameController public CurrentGroupResponse GetCurrentGroup(string sessionId) { - throw new NotImplementedException(); + return new CurrentGroupResponse + { + Squad = [] + }; }