From 6b2905b9f8ace510c3729ee6de2c060baaf8d1e3 Mon Sep 17 00:00:00 2001 From: tian <11429339@qq.com> Date: Wed, 17 Jun 2026 18:01:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B4=BB=E5=A1=9E=E6=83=B3=E5=AE=9A?= =?UTF-8?q?=E5=9D=90=E6=A0=87=E8=A7=84=E8=8C=83=E5=8C=96=20=E2=80=94=20?= =?UTF-8?q?=E5=B7=B1=E6=96=B90=E7=82=B9=EF=BC=8C=E6=97=A0=E4=BA=BA?= =?UTF-8?q?=E6=9C=BA=E5=9C=A8=E8=BF=9C=E6=96=B96600=E2=86=920?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/CounterDrone.Core/DefaultScenarios.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CounterDrone.Core/DefaultScenarios.cs b/src/CounterDrone.Core/DefaultScenarios.cs index 1b9ccaf..7725ef5 100644 --- a/src/CounterDrone.Core/DefaultScenarios.cs +++ b/src/CounterDrone.Core/DefaultScenarios.cs @@ -74,12 +74,12 @@ namespace CounterDrone.Core s.SaveTarget(t.Id, d.Drones.First(p => p.Id == "shahed").ToTargetConfig()); s.SaveRoute(t.Id, "default", d.Formations.First(f => f.Id == "single").ToRoutePlan(), new List { - new() { PosX = 0, PosY = 500, PosZ = 0, Speed = 200 }, new() { PosX = 6600, PosY = 500, PosZ = 0, Speed = 200 }, + new() { PosX = 0, PosY = 500, PosZ = 0, Speed = 200 }, }); s.SaveDeployment(t.Id, new List { - d.FireUnits.First(f => f.Id == "ground-light").ToEquipmentDeployment(AerosolType.InertGas, 1, 6600, 0, 50), + d.FireUnits.First(f => f.Id == "ground-light").ToEquipmentDeployment(AerosolType.InertGas, 1, 0, 0, 50), }); s.SaveCloudDispersal(t.Id, new CloudDispersal { AerosolType = (int)AerosolType.InertGas, DisperseHeight = 500 }); s.UpdateStep(t.Id, 5);