From 31d15e8404daea4f6ae22d5e8faed0678187013a Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 24 Jan 2025 11:12:36 +0000 Subject: [PATCH] Fixed build error --- Libraries/Core/Controllers/MatchController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Libraries/Core/Controllers/MatchController.cs b/Libraries/Core/Controllers/MatchController.cs index af5a7b26..1c551065 100644 --- a/Libraries/Core/Controllers/MatchController.cs +++ b/Libraries/Core/Controllers/MatchController.cs @@ -6,6 +6,7 @@ using Core.Models.Utils; using Core.Servers; using Core.Services; using Core.Utils.Cloners; +using static Core.Services.MatchLocationService; namespace Core.Controllers; @@ -36,7 +37,7 @@ public class MatchController( /// Handle client/match/group/delete /// /// - public void DeleteGroup(object info) // TODO: info is `any` in the node server + public void DeleteGroup(DeleteGroupRequest info) // TODO: info is `any` in the node server { _matchLocationService.DeleteGroup(info); }