Skip to content

Commit 9260014

Browse files
fix
1 parent 1788148 commit 9260014

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

src/Managers/Config.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace PolyMod.Managers;
55

66
/// <summary>
7-
/// allows mods to save config.
7+
/// Allows mods to save config.
88
/// </summary>
99
public class Config<T> where T : class
1010
{
@@ -91,7 +91,7 @@ public TResult Get<TResult>(Func<T, TResult> getter)
9191
return getter(currentConfig ?? throw new InvalidOperationException("Must set default before reading config."));
9292
}
9393
/// <summary>
94-
/// writes the config to disk
94+
/// Writes the config to disk
9595
/// </summary>
9696
public void SaveChanges()
9797
{

src/Managers/Main.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,7 @@ public static class Main
3232
/// Whether the mod has been fully initialized.
3333
/// </summary>
3434
internal static bool fullyInitialized;
35-
36-
/// <summary>
37-
/// Whether a dependency cycle was detected among the loaded mods.
38-
/// </summary>
39-
internal static bool dependencyCycle;
40-
35+
4136
/// <summary>
4237
/// A dictionary mapping unit IDs to the IDs of the units they embark into.
4338
/// </summary>

0 commit comments

Comments
 (0)