From 5ebeb82ec273e77b4fed6b04ab086457a59ebca3 Mon Sep 17 00:00:00 2001 From: MZ Date: Tue, 8 Oct 2024 19:19:58 +1030 Subject: [PATCH] Complete PB CanUse Condition PB is only allowed to be pressed if the gauge shows nothing but empty symbols. Without this condition, if the RSR would try to spam pressing PB when the last PB has been used by the finisher Blitz wasn't pressed yet - which jams other oGCDs. --- RotationSolver.Basic/Rotations/Basic/MonkRotation.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/RotationSolver.Basic/Rotations/Basic/MonkRotation.cs b/RotationSolver.Basic/Rotations/Basic/MonkRotation.cs index 76dbd2558..066c38be4 100644 --- a/RotationSolver.Basic/Rotations/Basic/MonkRotation.cs +++ b/RotationSolver.Basic/Rotations/Basic/MonkRotation.cs @@ -170,6 +170,7 @@ static partial void ModifyDragonKickPvE(ref ActionSetting setting) static partial void ModifyPerfectBalancePvE(ref ActionSetting setting) { + setting.ActionCheck = () => BeastChakras.Distinct().Count() == 1 && BeastChakras.Any(chakra => chakra == BeastChakra.NONE); setting.UnlockedByQuestID = 66602; setting.StatusProvide = [StatusID.PerfectBalance]; }