Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: MCH no LB on non players.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Nov 8, 2023
1 parent 53eca15 commit 8c24a85
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions RotationSolver.Basic/Rotations/Basic/MCH_Base.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Dalamud.Game.ClientState.Objects.SubKinds;
using ECommons.DalamudServices;
using ECommons.ExcelServices;
using RotationSolver.Basic.Traits;
Expand Down Expand Up @@ -326,6 +327,7 @@ protected static bool OverheatedEndAfterGCD(uint gctCount = 0, float offset = 0)
/// </summary>
public static IBaseAction PvP_MarksmansSpite { get; } = new BaseAction(ActionID.PvP_MarksmansSpite)
{
FilterForHostiles = tars => tars.Where(t => t is PlayerCharacter),
ActionCheck = (t, m) => LimitBreakLevel >= 1,
};

Expand Down

0 comments on commit 8c24a85

Please sign in to comment.