From 8ce6a81174fc3181677ae9fa5e2ee39028934987 Mon Sep 17 00:00:00 2001 From: Rabalaba Date: Thu, 18 Apr 2024 07:16:57 -0700 Subject: [PATCH] Update SCH_Default.cs per guide on art of war "At 2-3 targets, apply your DoT to all enemies before using this. At 4+ targets, skip your DoT application. Do not use on single target." Bio for 2 or less targets, art of war for 4 or more need to adjust count --- BasicRotations/Healer/SCH_Default.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasicRotations/Healer/SCH_Default.cs b/BasicRotations/Healer/SCH_Default.cs index 4330247..784cdd6 100644 --- a/BasicRotations/Healer/SCH_Default.cs +++ b/BasicRotations/Healer/SCH_Default.cs @@ -41,7 +41,7 @@ protected override bool EmergencyAbility(IAction nextGCD, out IAction? act) protected override bool GeneralGCD(out IAction? act) { if (SummonEosPvE.CanUse(out act)) return true; - if (BioPvE.CanUse(out act) && AllHostileTargets.Where(p => p.DistanceToPlayer() < 5).Count() < 2) return true; + if (BioPvE.CanUse(out act) && AllHostileTargets.Where(p => p.DistanceToPlayer() < 5).Count() < 4) return true; //AOE if (ArtOfWarPvE.CanUse(out act)) return true;