diff --git a/IPA.Loader/Loader/PluginInitInjector.cs b/IPA.Loader/Loader/PluginInitInjector.cs
index 7dc2679c..552f815b 100644
--- a/IPA.Loader/Loader/PluginInitInjector.cs
+++ b/IPA.Loader/Loader/PluginInitInjector.cs
@@ -33,7 +33,7 @@ namespace IPA.Loader
/// the function to call for injection.
public static void AddInjector(Type type, InjectParameter injector)
{
- injectors.Add(new Tuple(type, injector));
+ injectors.Add(Tuple.Create(type, injector));
}
private static readonly List> injectors = new List>
@@ -60,14 +60,14 @@ namespace IPA.Loader
var initArgs = new List