Skip to content

Commit d3a02bd

Browse files
authored
Merge pull request #265 from tomastzorta/22-Hours-Speedrun-Part-2
Fixed Reign Combo Part 2
2 parents 4f10efe + 4cb829a commit d3a02bd

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

RotationSolver.Basic/Rotations/Basic/GunbreakerRotation.cs

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -254,22 +254,13 @@ static partial void ModifyReignOfBeastsPvE(ref ActionSetting setting)
254254

255255
static partial void ModifyNobleBloodPvE(ref ActionSetting setting)
256256
{
257-
setting.ActionCheck = () => Service.GetAdjustedActionId(ActionID.ReignOfBeastsPvE) == ActionID.NobleBloodPvE;
258-
setting.ComboIds = [ActionID.ReignOfBeastsPvE];
259-
setting.CreateConfig = () => new ActionConfig()
260-
{
261-
AoeCount = 1,
262-
};
257+
//setting.ComboIds = [ActionID.ReignOfBeastsPvE];
258+
// TODO: Having configs here breaks the rotation, investigate why
263259
}
264260

265261
static partial void ModifyLionHeartPvE(ref ActionSetting setting)
266262
{
267-
setting.ActionCheck = () => Service.GetAdjustedActionId(ActionID.ReignOfBeastsPvE) == ActionID.LionHeartPvE;
268-
setting.ComboIds = [ActionID.NobleBloodPvE];
269-
setting.CreateConfig = () => new ActionConfig()
270-
{
271-
AoeCount = 1,
272-
};
263+
//setting.ComboIds = [ActionID.NobleBloodPvE];
273264
}
274265

275266
// PVP

0 commit comments

Comments
 (0)