浏览代码

Fix game crash when disabling console in config

Bepis 5 年之前
父节点
当前提交
f7bfd19855
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      BepInEx/Bootstrap/Chainloader.cs

+ 2 - 1
BepInEx/Bootstrap/Chainloader.cs

@@ -56,7 +56,8 @@ namespace BepInEx.Bootstrap
 			}
 
 			//Fix for standard output getting overwritten by UnityLogger
-			Console.SetOut(ConsoleWindow.StandardOut);
+			if (ConsoleWindow.StandardOut != null)
+				Console.SetOut(ConsoleWindow.StandardOut);
 
 
 			Logger.Listeners.Add(new UnityLogListener());