diff --git a/TrueCraft.Launcher/LauncherWindow.cs b/TrueCraft.Launcher/LauncherWindow.cs index 43f21ce..4c5d34d 100644 --- a/TrueCraft.Launcher/LauncherWindow.cs +++ b/TrueCraft.Launcher/LauncherWindow.cs @@ -50,6 +50,7 @@ namespace TrueCraft.Launcher process.StartInfo = new ProcessStartInfo("mono", "TrueCraft.Client.Linux.exe " + ServerIPText.Text); else process.StartInfo = new ProcessStartInfo("TrueCraft.Client.Linux.exe", ServerIPText.Text); + process.EnableRaisingEvents = true; process.Exited += (s, a) => Application.Invoke(ClientExited); process.Start(); this.ShowInTaskbar = false;