diff --git a/Knossos.NET/Classes/Knossos.cs b/Knossos.NET/Classes/Knossos.cs index 47e0b7df..1358710a 100644 --- a/Knossos.NET/Classes/Knossos.cs +++ b/Knossos.NET/Classes/Knossos.cs @@ -1484,7 +1484,7 @@ public static List GetInstalledModList(string? id) } else { - return installedMods; + return installedMods.ToList(); } } @@ -1527,7 +1527,7 @@ public static List GetInstalledBuildsList(string? id=null, FsoStabilit } else { - return engineBuilds; + return engineBuilds.ToList(); } } } @@ -1903,7 +1903,7 @@ public static void AddTool(Tool tool) /// List of tools or empty list public static List GetTools() { - return modTools; + return modTools.ToList(); } } }