This commit is contained in:
辉鸭蛋
2026-03-09 03:07:21 +08:00
parent 32582e39a9
commit 864efb42a3

View File

@@ -807,7 +807,7 @@ public class AutoStygianOnslaughtTask : StateMachineBase<StygianState, BvPage>,
// 先看看当前身边是否有F有的话直接F
using var ra1 = CaptureToRectArea();
var text = Bv.FindFKeyText(ra1);
if (!string.IsNullOrEmpty(text) && text.Contains("激活"))
if (string.IsNullOrEmpty(text) || !text.Contains("激活"))
{
await _lowerHeadThenWalkToTask!.Start(_ct);
}