From c94eb5dda8c7baf4fca428488c7f015752a96a5c Mon Sep 17 00:00:00 2001 From: milimoe Date: Mon, 27 Apr 2026 21:59:16 +0800 Subject: [PATCH] fix --- Library/Main.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Main.cs b/Library/Main.cs index 69bae37..876f57c 100644 --- a/Library/Main.cs +++ b/Library/Main.cs @@ -237,7 +237,7 @@ while (true) { FunGameSimulation.IsDebug = true; DateTime start = DateTime.Now; - await FunGameSimulation.StartSimulationGame(true, false, true, false, useStore: false, hasMap: true); + await FunGameSimulation.StartSimulationGame(true, false, true, false, useStore: false, hasMap: false); DateTime end = DateTime.Now; Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒"); ConsoleKeyInfo key = Console.ReadKey(); @@ -247,7 +247,7 @@ while (true) } await Task.Delay(1); start = DateTime.Now; - await FunGameSimulation.StartSimulationGame(true, false, false, false, hasMap: true); + await FunGameSimulation.StartSimulationGame(true, false, false, false, hasMap: false); end = DateTime.Now; Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒"); key = Console.ReadKey();