From 5aaa5a28417b03b8ef172dffede45bb7406515a3 Mon Sep 17 00:00:00 2001 From: Chomp Date: Sun, 9 Feb 2025 14:34:56 +0000 Subject: [PATCH] Fixed caps for `GetProfileModsGroupedByModName` --- Libraries/Core/Controllers/LauncherController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/Core/Controllers/LauncherController.cs b/Libraries/Core/Controllers/LauncherController.cs index 319ae66b..2fe8f827 100644 --- a/Libraries/Core/Controllers/LauncherController.cs +++ b/Libraries/Core/Controllers/LauncherController.cs @@ -225,13 +225,13 @@ public class LauncherController( if (profile?.SptData?.Mods is not null) { - return getProfileModsGroupedByModName(profile?.SptData?.Mods); + return GetProfileModsGroupedByModName(profile?.SptData?.Mods); } return []; } - public List getProfileModsGroupedByModName(List profileMods) + public List GetProfileModsGroupedByModName(List profileMods) { // Group all mods used by profile by name var modsGroupedByName = new Dictionary>();