Skip to content

Commit efcb908

Browse files
committed
feat(Enums): Clarify Bypass... values, the new Auto Rotation Config enum entries
Signed-off-by: Ethan Henderson <ethan@zbee.codes>
1 parent 2b60ce3 commit efcb908

1 file changed

Lines changed: 27 additions & 42 deletions

File tree

Enum/AutoRotationConfigOption.cs

Lines changed: 27 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -11,72 +11,57 @@ namespace WrathCombo.API.Enum;
1111
/// </summary>
1212
public enum AutoRotationConfigOption
1313
{
14-
[ConfigValueType(typeof(bool))]
15-
InCombatOnly = 0,
14+
[ConfigValueType(typeof(bool))] InCombatOnly = 0,
1615

1716
[ConfigValueType(typeof(DPSRotationMode))]
1817
DPSRotationMode = 1,
1918

2019
[ConfigValueType(typeof(HealerRotationMode))]
2120
HealerRotationMode = 2,
2221

23-
[ConfigValueType(typeof(bool))]
24-
FATEPriority = 3,
22+
[ConfigValueType(typeof(bool))] FATEPriority = 3,
2523

26-
[ConfigValueType(typeof(bool))]
27-
QuestPriority = 4,
24+
[ConfigValueType(typeof(bool))] QuestPriority = 4,
2825

29-
[ConfigValueType(typeof(int))]
30-
SingleTargetHPP = 5,
26+
[ConfigValueType(typeof(int))] SingleTargetHPP = 5,
3127

32-
[ConfigValueType(typeof(int))]
33-
AoETargetHPP = 6,
28+
[ConfigValueType(typeof(int))] AoETargetHPP = 6,
3429

35-
[ConfigValueType(typeof(int))]
36-
SingleTargetRegenHPP = 7,
30+
[ConfigValueType(typeof(int))] SingleTargetRegenHPP = 7,
3731

38-
[ConfigValueType(typeof(bool))]
39-
ManageKardia = 8,
32+
[ConfigValueType(typeof(bool))] ManageKardia = 8,
4033

41-
[ConfigValueType(typeof(bool))]
42-
AutoRez = 9,
34+
[ConfigValueType(typeof(bool))] AutoRez = 9,
4335

44-
[ConfigValueType(typeof(bool))]
45-
AutoRezDPSJobs = 10,
36+
[ConfigValueType(typeof(bool))] AutoRezDPSJobs = 10,
4637

47-
[ConfigValueType(typeof(bool))]
48-
AutoCleanse = 11,
38+
[ConfigValueType(typeof(bool))] AutoCleanse = 11,
4939

50-
[ConfigValueType(typeof(bool))]
51-
IncludeNPCs = 12,
40+
[ConfigValueType(typeof(bool))] IncludeNPCs = 12,
5241

53-
[ConfigValueType(typeof(bool))]
54-
OnlyAttackInCombat = 13,
42+
[ConfigValueType(typeof(bool))] OnlyAttackInCombat = 13,
5543

56-
[ConfigValueType(typeof(bool))]
57-
OrbwalkerIntegration = 14,
44+
[ConfigValueType(typeof(bool))] OrbwalkerIntegration = 14,
5845

59-
[ConfigValueType(typeof(bool))]
60-
AutoRezOutOfParty = 15,
46+
[ConfigValueType(typeof(bool))] AutoRezOutOfParty = 15,
6147

62-
[ConfigValueType(typeof(int))]
63-
DPSAoETargets = 16,
48+
[ConfigValueType(typeof(int))] DPSAoETargets = 16,
6449

65-
[ConfigValueType(typeof(int))]
66-
SingleTargetExcogHPP = 17,
50+
[ConfigValueType(typeof(int))] SingleTargetExcogHPP = 17,
6751

68-
[ConfigValueType(typeof(bool))]
69-
AutoRezDPSJobsHealersOnly = 18,
52+
[ConfigValueType(typeof(bool))] AutoRezDPSJobsHealersOnly = 18,
7053

71-
[ConfigValueType(typeof(bool))]
72-
DPSAlwaysHardTarget = 19,
54+
[ConfigValueType(typeof(bool))] DPSAlwaysHardTarget = 19,
7355

74-
[ConfigValueType(typeof(bool))]
75-
HealerAlwaysHardTarget = 20,
56+
[ConfigValueType(typeof(bool))] HealerAlwaysHardTarget = 20,
7657

77-
[ConfigValueType(typeof(bool))]
78-
BypassQuest = 21,
58+
/// <remarks>
59+
/// <see cref="InCombatOnly" /> is what is being bypassed here.
60+
/// </remarks>
61+
[ConfigValueType(typeof(bool))] BypassQuest = 21,
7962

80-
[ConfigValueType(typeof(bool))]
81-
BypassFATE = 22,
63+
/// <remarks>
64+
/// <see cref="InCombatOnly" /> is what is being bypassed here.
65+
/// </remarks>
66+
[ConfigValueType(typeof(bool))] BypassFATE = 22,
8267
}

0 commit comments

Comments
 (0)