From ce2b1c7b90e839b06b35699697afa4c7f5847e94 Mon Sep 17 00:00:00 2001 From: milimoe Date: Tue, 3 Feb 2026 01:38:12 +0800 Subject: [PATCH] =?UTF-8?q?AIController=20=E4=BD=BF=E7=94=A8=E5=A4=9A?= =?UTF-8?q?=E7=BA=BF=E7=A8=8B=E8=AE=A1=E7=AE=97=EF=BC=9B=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E7=9B=AE=E6=A0=87=E5=89=8D=E7=9A=84=E8=AF=A2=E9=97=AE=E9=A1=BA?= =?UTF-8?q?=E5=BA=8F=E6=94=B9=E5=8A=A8?= 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 218e0f4..140e2be 100644 --- a/Library/Main.cs +++ b/Library/Main.cs @@ -123,7 +123,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(); @@ -133,7 +133,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();