Skip to content

Commit

Permalink
Merge pull request #751 from Taurenkey/IPCFixes
Browse files Browse the repository at this point in the history
Update Wrath IPC to correct Enums
  • Loading branch information
erdelf authored Jan 8, 2025
2 parents a60d064 + 2cadcf5 commit 93d6c13
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions AutoDuty/IPC/IPCSubscriber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,28 +271,28 @@ public enum CancellationReason
/// </summary>
public enum AutoRotationConfigOption
{
InCombatOnly, //bool
DPSRotationMode,
HealerRotationMode,
FATEPriority, //bool
QuestPriority,//bool
SingleTargetHPP,//int
AoETargetHPP,//int
SingleTargetRegenHPP,//int
ManageKardia,//bool
AutoRez,//bool
AutoRezDPSJobs,//bool
AutoCleanse,//bool
IncludeNPCs,//bool
InCombatOnly = 0, //bool
DPSRotationMode = 1,
HealerRotationMode = 2,
FATEPriority = 3, //bool
QuestPriority = 4,//bool
SingleTargetHPP = 5,//int
AoETargetHPP = 6,//int
SingleTargetRegenHPP = 7,//int
ManageKardia = 8,//bool
AutoRez = 9,//bool
AutoRezDPSJobs = 10,//bool
AutoCleanse = 11,//bool
IncludeNPCs = 12,//bool
}

public enum AutoRotationConfigDPSRotationSubset
{
Manual,
Lowest_Current,
Highest_Max,
Tank_Target,
Nearest,
Manual = 0,
Lowest_Current = 4,
Highest_Max = 1,
Tank_Target = 5,
Nearest = 6,
}

/// <summary>
Expand All @@ -301,8 +301,8 @@ public enum AutoRotationConfigDPSRotationSubset
/// </summary>
public enum AutoRotationConfigHealerRotationSubset
{
Manual,
Lowest_Current,
Manual = 0,
Lowest_Current = 2
}

private static Guid? _curLease;
Expand Down

0 comments on commit 93d6c13

Please sign in to comment.