From 5f98f16cd52aa555e66bd7be84bee91f17d26c76 Mon Sep 17 00:00:00 2001 From: Chomp Date: Sun, 12 Jan 2025 20:03:44 +0000 Subject: [PATCH] Stubbed out `GetCurrentGroup` --- Core/Controllers/GameController.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 = [] + }; }