diff --git a/IPA.Loader/Config/ModPrefs.cs b/IPA.Loader/Config/ModPrefs.cs
index 709dbb6e..16dd5c7b 100644
--- a/IPA.Loader/Config/ModPrefs.cs
+++ b/IPA.Loader/Config/ModPrefs.cs
@@ -103,7 +103,8 @@ namespace IPA.Config
///
/// the plugin to get the preferences file for
public ModPrefs(IBeatSaberPlugin plugin) {
- _instance = new IniFile(Path.Combine(Environment.CurrentDirectory, "UserData", "ModPrefs", $"{plugin.Name}.ini"));
+ _instance = new IniFile(Path.Combine(Environment.CurrentDirectory, "UserData", "ModPrefs",
+ $"{plugin.Name}.ini"));
ModPrefss.Add(plugin, this);
}
diff --git a/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs b/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs
index d3d7e17f..325d667f 100644
--- a/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs
+++ b/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs
@@ -10,7 +10,6 @@ namespace IPA.Old
[Obsolete("When building plugins for Beat Saber, use IBeatSaberPlugin")]
public interface IPlugin
{
-
///
/// Gets the name of the plugin.
///
@@ -48,7 +47,6 @@ namespace IPA.Old
///
void OnUpdate();
-
///
/// Gets invoked on ever physics update.
///