Disable possibility of ReadLine in Valve check

This commit is contained in:
Matt Nadareski
2021-08-29 11:31:17 -07:00
parent 81ce49c219
commit 2b0a43ca3e

View File

@@ -566,8 +566,9 @@ namespace BurnOutSharp.FileType
// Command prompt.
Console.Write("{0}>", HLLib.hlItemGetName(pItem));
// Get and parse line.
sLine = Console.ReadLine().Trim();
// Get and parse line. -- Commented out because we don't want it to read anything in automatic mode
//sLine = Console.ReadLine().Trim();
sLine = null;
}
if(sLine == null)
{