File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44namespace PolyMod . Managers ;
55
66/// <summary>
7- /// allows mods to save config.
7+ /// Allows mods to save config.
88/// </summary>
99public 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 {
Original file line number Diff line number Diff 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>
You can’t perform that action at this time.
0 commit comments