From 955c67609252f32d05c93c162f26d16518d453ad Mon Sep 17 00:00:00 2001 From: milimoe Date: Fri, 23 Jan 2026 01:25:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DBUG=E5=92=8C=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=9C=B0=E5=9B=BE=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Library/Main.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Main.cs b/Library/Main.cs index a166532..5f2f8f0 100644 --- a/Library/Main.cs +++ b/Library/Main.cs @@ -116,7 +116,7 @@ while (true) { FunGameSimulation.IsDebug = true; DateTime start = DateTime.Now; - await FunGameSimulation.StartSimulationGame(true, false, true, false, useStore: false, hasMap: false); + await FunGameSimulation.StartSimulationGame(true, false, true, false, useStore: false, hasMap: true); DateTime end = DateTime.Now; Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒"); ConsoleKeyInfo key = Console.ReadKey(); @@ -126,7 +126,7 @@ while (true) } await Task.Delay(1); start = DateTime.Now; - await FunGameSimulation.StartSimulationGame(true, false, false, false, hasMap: false); + await FunGameSimulation.StartSimulationGame(true, false, false, false, hasMap: true); end = DateTime.Now; Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒"); key = Console.ReadKey();