muffin v7.5.5

This commit is contained in:
alydev 2026-08-17 20:25:32 +10:00
parent a8f2c1df37
commit 6266f9e6b7
110 changed files with 14907 additions and 6073 deletions

View file

@ -24,7 +24,9 @@ internal static class MoveTo
}
if (step.Position.HasValue)
{
return CreateMoveTasks(step, step.Position.Value);
List<LandingZone> landingZones = step.LandingZones;
Vector3 destination = ((landingZones == null || landingZones.Count <= 0) ? step.Position.Value : LandingZoneMath.CalculateLandingLocation(step.LandingZones));
return CreateMoveTasks(step, destination);
}
if (step != null && step.DataId.HasValue && step.StopDistance.HasValue)
{
@ -46,13 +48,13 @@ internal static class MoveTo
{
valueOrDefault = aetheryte.GetValueOrDefault();
flag = true;
goto IL_00e2;
goto IL_0108;
}
}
}
flag = false;
goto IL_00e2;
IL_00e2:
goto IL_0108;
IL_0108:
if (flag)
{
return CreateMoveTasks(step, aetheryteData.Locations[valueOrDefault]);