diff --git a/IPA.Loader/Loader/PluginMetadata.cs b/IPA.Loader/Loader/PluginMetadata.cs
index 8dae9738..6d43543b 100644
--- a/IPA.Loader/Loader/PluginMetadata.cs
+++ b/IPA.Loader/Loader/PluginMetadata.cs
@@ -42,6 +42,12 @@ namespace IPA.Loader
/// the updater ID of the plugin
public string Id { get; internal set; }
+ ///
+ /// The name of the author that wrote this plugin.
+ ///
+ /// the name of the plugin's author
+ public string Author { get; internal set; }
+
///
/// The version of the plugin.
///
@@ -90,6 +96,7 @@ namespace IPA.Loader
Name = value.Name;
Version = value.Version;
Id = value.Id;
+ Author = value.Author;
AssociatedFiles = value.Files
.Select(f => Path.Combine(UnityGame.InstallPath, f))
.Select(p => new FileInfo(p)).ToList();
diff --git a/Refs/Main.dll b/Refs/Main.dll
index 3fbf4d43..7502eeb2 100644
Binary files a/Refs/Main.dll and b/Refs/Main.dll differ
diff --git a/Refs/UnityEngine.CoreModule.Net4.dll b/Refs/UnityEngine.CoreModule.Net4.dll
index 66992ff7..7f9c5c4a 100644
Binary files a/Refs/UnityEngine.CoreModule.Net4.dll and b/Refs/UnityEngine.CoreModule.Net4.dll differ