From 2cadcf5595c4d73616eb9eda697774b0018df68a Mon Sep 17 00:00:00 2001 From: Taurenkey Date: Mon, 6 Jan 2025 11:29:40 +0000 Subject: [PATCH] Update Wrath IPC to correct Enums --- AutoDuty/IPC/IPCSubscriber.cs | 40 +++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/AutoDuty/IPC/IPCSubscriber.cs b/AutoDuty/IPC/IPCSubscriber.cs index feb674a9..4bbd0a6d 100644 --- a/AutoDuty/IPC/IPCSubscriber.cs +++ b/AutoDuty/IPC/IPCSubscriber.cs @@ -271,28 +271,28 @@ public enum CancellationReason /// 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, } /// @@ -301,8 +301,8 @@ public enum AutoRotationConfigDPSRotationSubset /// public enum AutoRotationConfigHealerRotationSubset { - Manual, - Lowest_Current, + Manual = 0, + Lowest_Current = 2 } private static Guid? _curLease;