Add checks to PvE methods and update online status handling #506
+5
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the
RotationSolver
project, focusing on enhancing action settings and improving status checks. The most important changes include modifications to action settings in theAstrologianRotation
andCustomRotation_Actions
files, updates to theDrawStatus
method in theRotationConfigWindow
file, and refinements to theGetPartyMembers
andGetAllianceMembers
methods in theTargetUpdater
file.Enhancements to action settings:
RotationSolver.Basic/Rotations/Basic/AstrologianRotation.cs
: ModifiedModifyCombustPvE
to include anActionCheck
that ensures the action is not the last ability used.RotationSolver.Basic/Rotations/CustomRotation_Actions.cs
: UpdatedModifyTrueNorthPvE
to add anActionCheck
that verifies the action is not the last one performed.Improvements to status checks:
RotationSolver/UI/RotationConfigWindow.cs
: Enhanced theDrawStatus
method to display the player's online status.RotationSolver/Updaters/TargetUpdater.cs
: Refined theGetPartyMembers
method to exclude characters with an online status of 5 from the list of targetable party members.RotationSolver/Updaters/TargetUpdater.cs
: Adjusted theGetAllianceMembers
method to also exclude characters with an online status of 5 from the list of targetable alliance members.