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>();