挪德卡莱中心点更新/地图追踪不执行自动派遣 (#2323)

This commit is contained in:
kaedelcb
2025-10-11 21:25:01 +08:00
committed by GitHub
parent 00adec5709
commit 4547c5cd74
2 changed files with 3 additions and 3 deletions

View File

@@ -637,9 +637,9 @@ public class PathExecutor
{
tpTask = new TpTask(ct);
}
// 最小5分钟间隔
if ((DateTime.UtcNow - _lastGetExpeditionRewardsTime).TotalMinutes < 5)
if ( _combatScenes?.CurrentMultiGameStatus?.IsInMultiGame == true && (DateTime.UtcNow - _lastGetExpeditionRewardsTime).TotalMinutes < 5)
{
return false;
}
@@ -652,7 +652,6 @@ public class PathExecutor
if (!RunnerContext.Instance.isAutoFetchDispatch && adventurersGuildCountry != "无")
{
var ra1 = CaptureToRectArea();
var textRect = new Rect(60, 20, 160, 260);
var textMat = new Mat(ra1.SrcMat, textRect);
string text = OcrFactory.Paddle.Ocr(textMat);

View File

@@ -25,6 +25,7 @@ public class MapLazyAssets : Singleton<MapLazyAssets>
{ "须弥", [2877, -374] },
{ "枫丹", [4515, 3631] },
{ "纳塔", [8973.5, -1879.1] },
{ "挪德卡莱", [9542.25, 1661.84] },
};
public readonly Dictionary<string, GiTpPosition> DomainPositionMap = new();