Merge pull request #1 from Lauchmelder23/master
Fixed unhandled Exception
This commit is contained in:
commit
d576ee708f
|
@ -40,6 +40,8 @@ namespace ModLoader
|
|||
//For each DLL in "Blackwake/Blackwake_Data/Managed/Mods/"
|
||||
//Open them, Get the mod class, then add it in the game.
|
||||
foreach (var file in d.GetFiles("*.dll"))
|
||||
{
|
||||
try
|
||||
{
|
||||
Assembly modDll = Assembly.LoadFrom(modsPath + "/" + file.Name);
|
||||
Type[] modType = modDll.GetTypes();
|
||||
|
@ -53,6 +55,13 @@ namespace ModLoader
|
|||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Log("Exception raised while loading mod " + file.Name);
|
||||
Log(e.Message);
|
||||
Log("Skipped loading this mod");
|
||||
}
|
||||
}
|
||||
Log("All Mods have been Loaded!");
|
||||
modObjects.AddComponent<ModGUI.ModGUI>();
|
||||
Log("GUI has been loaded");
|
||||
|
|
Loading…
Reference in a new issue