Skip to content

Commit 57abfc7

Browse files
authored
Merge pull request #625 from ggscott/hotfix-BLU-FeatherRain-Targeting
Flagged FeatherRain as a special targeting ability - Enables use
2 parents 4f65cd0 + aa5f200 commit 57abfc7

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

RotationSolver.Basic/Actions/ActionTargetInfo.cs

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ private unsafe bool CanUseTo(IGameObject tar)
186186
ActionID.AethericMimicryPvE,
187187
ActionID.EruptionPvE,
188188
ActionID.BishopAutoturretPvP,
189+
ActionID.FeatherRainPvE,
189190
};
190191

191192
private bool IsSpecialAbility(uint iD)

RotationSolver.Basic/Rotations/Basic/BlueMageRotation.cs

+6
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ public enum BluAOESpell : byte
7878
///
7979
/// </summary>
8080
ChocoMeteor,
81+
82+
/// <summary>
83+
///
84+
/// </summary>
85+
FeatherRain,
8186
}
8287

8388
/// <summary>
@@ -511,6 +516,7 @@ static partial void ModifyPeculiarLightPvE(ref ActionSetting setting)
511516
static partial void ModifyFeatherRainPvE(ref ActionSetting setting)
512517
{
513518
setting.TargetStatusProvide = [StatusID.Windburn_1723];
519+
setting.IsFriendly = false;
514520
setting.CreateConfig = () => new ActionConfig()
515521
{
516522
AoeCount = 1,

0 commit comments

Comments
 (0)