Skip to content

Commit

Permalink
Auto start server on load
Browse files Browse the repository at this point in the history
  • Loading branch information
GreepTheSheep authored May 6, 2022
1 parent d367abe commit ee11edd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion UI/Components/ServerComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ public ServerComponent(LiveSplitState state)
SplitTimeFormatter = new RegularTimeFormatter(TimeAccuracy.Hundredths);

ContextMenuControls = new Dictionary<string, Action>();
ContextMenuControls.Add("Start Server", Start);
//ContextMenuControls.Add("Start Server", Start);
ContextMenuControls.Add("Stop Server", Stop);

this.Start();

State = state;
Form = state.Form;
Expand Down

0 comments on commit ee11edd

Please sign in to comment.