Merge pull request #1 from Lauchmelder23/master
Fixed unhandled Exception
This commit is contained in:
commit
d576ee708f
|
@ -41,17 +41,26 @@ namespace ModLoader
|
||||||
//Open them, Get the mod class, then add it in the game.
|
//Open them, Get the mod class, then add it in the game.
|
||||||
foreach (var file in d.GetFiles("*.dll"))
|
foreach (var file in d.GetFiles("*.dll"))
|
||||||
{
|
{
|
||||||
Assembly modDll = Assembly.LoadFrom(modsPath + "/" + file.Name);
|
try
|
||||||
Type[] modType = modDll.GetTypes();
|
|
||||||
foreach (Type t in modType)
|
|
||||||
{
|
{
|
||||||
Log("Found type in " + file.Name + ": " + t.Name);
|
Assembly modDll = Assembly.LoadFrom(modsPath + "/" + file.Name);
|
||||||
if (t.IsClass && t.IsSubclassOf(typeof(MonoBehaviour)))
|
Type[] modType = modDll.GetTypes();
|
||||||
|
foreach (Type t in modType)
|
||||||
{
|
{
|
||||||
modObjects.AddComponent(t);
|
Log("Found type in " + file.Name + ": " + t.Name);
|
||||||
Log("Loaded '" + t.Name + "' in " + file.Name);
|
if (t.IsClass && t.IsSubclassOf(typeof(MonoBehaviour)))
|
||||||
|
{
|
||||||
|
modObjects.AddComponent(t);
|
||||||
|
Log("Loaded '" + t.Name + "' in " + file.Name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
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!");
|
Log("All Mods have been Loaded!");
|
||||||
modObjects.AddComponent<ModGUI.ModGUI>();
|
modObjects.AddComponent<ModGUI.ModGUI>();
|
||||||
|
|
Loading…
Reference in a new issue