mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-15 07:43:20 +08:00
fix bug
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user