Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
Enable Ghost Mode by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinvanrijn committed Aug 22, 2022
1 parent 3465080 commit 133de3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CSL-Traffic/OptionsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void CreateSettings(UIHelperBase helper)
m_realisticSpeedsCheckBox = group.AddCheckbox("Beta Test: Realistic Speeds", false, IgnoreMe) as UICheckBox;
m_betaTestRoadCustomizerCheckBox = group.AddCheckbox("Beta Test: Road Customizer Tool", false, IgnoreMe) as UICheckBox;
m_improvedAICheckBox = group.AddCheckbox("Beta Test: Improved AI", false, IgnoreMe) as UICheckBox;
m_ghostModeCheckBox = group.AddCheckbox("Ghost Mode (disables all mod functionality leaving only enough logic to load the map)", false, IgnoreMe) as UICheckBox;
m_ghostModeCheckBox = group.AddCheckbox("Ghost Mode (disables all mod functionality leaving only enough logic to load the map)", true, IgnoreMe) as UICheckBox;

group.AddButton("Save", OnSave);

Expand Down

0 comments on commit 133de3a

Please sign in to comment.