We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b71bc9 commit 5efb9bfCopy full SHA for 5efb9bf
FastFail/Config.cs
@@ -3,12 +3,12 @@
3
class Config
4
{
5
public static BS_Utils.Utilities.Config config = new BS_Utils.Utilities.Config("FastFail");
6
- public static bool autoSkip = false;
+ public static bool autoSkip = true;
7
public static bool enabled = true;
8
9
public static void Read()
10
11
- autoSkip = config.GetBool("FastFail", "autoSkip", false, true);
+ autoSkip = config.GetBool("FastFail", "autoSkip", true, true);
12
enabled = config.GetBool("FastFail", "enabled", true, true);
13
}
14
0 commit comments