We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 003a737 commit ee20a6dCopy full SHA for ee20a6d
fCraft/Plugins/PluginManager.cs
@@ -64,7 +64,7 @@ public static void Init() {
64
}
65
66
static void LoadTypes(string file) {
67
- Assembly lib = Assembly.LoadFile(Path.GetFullPath(file));
+ Assembly lib = Assembly.LoadFrom(Path.GetFullPath(file));
68
if (lib == null) return;
69
70
foreach (Type t in lib.GetTypes()) {
0 commit comments