Skip to content

Commit

Permalink
- Bethesda launcher closing after exit
Browse files Browse the repository at this point in the history
  • Loading branch information
Enclave2020 committed Nov 21, 2018
1 parent dd0159a commit a5aec2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ static void Launch()
Console.WriteLine("Waiting for Fallout 76 closed.");

process.WaitForExit();

Console.WriteLine("Closing Bethesda launcher.");
foreach (Process bethesdaLauncher in Process.GetProcessesByName("BethesdaNetLauncher"))
bethesdaLauncher.Kill();
}

static void Main(string[] args)
Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.1")]

0 comments on commit a5aec2c

Please sign in to comment.