Skip to content

Commit 5efb9bf

Browse files
committed
Enable autoskip by default
1 parent 9b71bc9 commit 5efb9bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FastFail/Config.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
class Config
44
{
55
public static BS_Utils.Utilities.Config config = new BS_Utils.Utilities.Config("FastFail");
6-
public static bool autoSkip = false;
6+
public static bool autoSkip = true;
77
public static bool enabled = true;
88

99
public static void Read()
1010
{
11-
autoSkip = config.GetBool("FastFail", "autoSkip", false, true);
11+
autoSkip = config.GetBool("FastFail", "autoSkip", true, true);
1212
enabled = config.GetBool("FastFail", "enabled", true, true);
1313
}
1414

0 commit comments

Comments
 (0)