fix iw5-mod not launching without admin

This commit is contained in:
mxve 2023-06-09 19:30:09 +02:00
parent 6bc598cb2d
commit 9986ce1172

View File

@ -14,7 +14,8 @@ Module Program
wc.DownloadFile(master & remote_path & filename, filename)
End Using
Console.WriteLine("Starting " & game)
Process.Start(filename)
Dim p As Process = Process.Start(filename)
p.WaitForExit()
End
End Sub