From 2b0a43ca3e78605b4390737c3fddc56026733d5b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 29 Aug 2021 11:31:17 -0700 Subject: [PATCH] Disable possibility of ReadLine in Valve check --- BurnOutSharp/FileType/Valve.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BurnOutSharp/FileType/Valve.cs b/BurnOutSharp/FileType/Valve.cs index 00a66f58..cc8dd574 100644 --- a/BurnOutSharp/FileType/Valve.cs +++ b/BurnOutSharp/FileType/Valve.cs @@ -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) {