Skip to content

Commit

Permalink
Fix config naming for SkipIntermediatePoints
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Nov 9, 2024
1 parent 25cd67f commit 3a04fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WowPacketParser/Misc/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static class Settings
public static readonly bool ForcePhaseZero = Conf.GetBoolean("ForcePhaseZero", false);
public static readonly bool GenerateCreateObject2SpawnsOnly = Conf.GetBoolean("GenerateCreateObject2SpawnsOnly", false);
public static readonly bool SkipDuplicateSpawns = Conf.GetBoolean("SkipDuplicateSpawns", false);
public static readonly bool SkipIntermediatePoints = Conf.GetBoolean("SkipDuplicateSpawns", false);
public static readonly bool SkipIntermediatePoints = Conf.GetBoolean("SkipIntermediatePoints", false);
public static readonly string SQLFileName = Conf.GetString("SQLFileName", string.Empty);
public static readonly bool SplitSQLFile = Conf.GetBoolean("SplitSQLFile", false);
public static readonly bool ShowEndPrompt = Conf.GetBoolean("ShowEndPrompt", false);
Expand Down

0 comments on commit 3a04fed

Please sign in to comment.