We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5257312 commit cdd4e0dCopy full SHA for cdd4e0d
Services/GameService.cs
@@ -8,7 +8,6 @@
8
using System.Timers;
9
using Gameloop.Vdf;
10
using Gameloop.Vdf.Linq;
11
-using Microsoft.Win32;
12
using Scum_Bag.DataAccess.Data.Steam;
13
using Scum_Bag.Models;
14
@@ -149,7 +148,7 @@ public bool LaunchGame(string gameName)
149
148
int retryCount = 0;
150
while (gameProcess == null && retryCount++ < 10)
151
{
152
- System.Threading.Thread.Sleep(1000);
+ System.Threading.Thread.Sleep(1500);
153
154
gameProcess = Process.GetProcesses()
155
.Where(x => possibleGameExecutables.Contains(x.ProcessName))
0 commit comments