Do bot startup on another thread so console is responsive during this process

This commit is contained in:
Justin Clark-Casey (justincc)
2012-05-11 01:56:00 +01:00
parent 93b615c51d
commit 0ddf3c5289
2 changed files with 5 additions and 1 deletions

View File

@@ -222,6 +222,7 @@ namespace pCampBot
Thread pbThread = new Thread(pb.startup);
pbThread.Name = pb.Name;
pbThread.IsBackground = true;
pbThread.Start();
}