Skip to content

Commit

Permalink
NM fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Akechi-kun committed Dec 26, 2024
1 parent 525d636 commit 0199c12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BossMod/Autorotation/akechi/AkechiGNB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,8 @@ private void QueueOGCD(AID aid, Actor? target, OGCDPriority prio, float basePrio
canNM && //No Mercy is available
GCD < 0.9f && //GCD is less than 0.9s
((Unlocked(AID.DoubleDown) && //Double Down is unlocked, indicating Lv90 or above
Ammo < 3) || //Ammo is not 3
((bfCD is <= 90 and >= 30 && (Ammo >= 2 || (Ammo == 1 && ComboLastMove is AID.BrutalShell))) || //In Odd Window & conditions are met
(bfCD is not <= 90 and not >= 30 && Ammo < 3))) || //In Even Window & conditions are met
(!Unlocked(AID.DoubleDown) && Unlocked(AID.Bloodfest) && //Double Down is not unlocked but Bloodfest is, indicating Lv80-89
Ammo >= 1 && //Ammo is 1 or more
bfCD is < 5 or 0) || //Bloodfest is ready or about to be
Expand Down

0 comments on commit 0199c12

Please sign in to comment.