diff --git a/BossMod/Autorotation/GNB/GNBConfig.cs b/BossMod/Autorotation/GNB/GNBConfig.cs index ffa8f083ec..1cabd8ddd1 100644 --- a/BossMod/Autorotation/GNB/GNBConfig.cs +++ b/BossMod/Autorotation/GNB/GNBConfig.cs @@ -1,4 +1,4 @@ -namespace BossMod; +namespace BossMod; [ConfigDisplay(Parent = typeof(AutorotationConfig))] class GNBConfig : ConfigNode @@ -6,19 +6,19 @@ class GNBConfig : ConfigNode [PropertyDisplay("Execute optimal rotations on Keen Edge (ST) or Demon Slice (AOE)")] public bool FullRotation = true; - [PropertyDisplay("Execute preceeding actions for single-target combos")] + [PropertyDisplay("Execute preceeding actions for ST combos")] public bool STCombos = true; - [PropertyDisplay("Execute preceeding action for aoe combo")] + [PropertyDisplay("Execute preceeding actions for AOE combo")] public bool AOECombos = true; - [PropertyDisplay("Smart targeting for Shirk and Heart of Corundum (target if friendly, otherwise mouseover if friendly, otherwise offtank if available)")] + [PropertyDisplay("Smart targeting for Shirk and HoC (target if friendly, otherwise mouseover if friendly, otherwise offtank if available)")] public bool SmartHeartofCorundumShirkTarget = true; [PropertyDisplay("Use provoke on mouseover, if available and hostile")] public bool ProvokeMouseover = true; - [PropertyDisplay("Forbid Lightning Shot too early in prepull")] + [PropertyDisplay("Forbid 'Lightning Shot' too early in prepull")] public bool ForbidEarlyLightningShot = true; [PropertyDisplay("Use both Rough Divide charges in No Mercy")] @@ -27,9 +27,9 @@ class GNBConfig : ConfigNode [PropertyDisplay("<= 2.47 sks rotation")] public bool Skscheck = true; - [PropertyDisplay("Early No Mercy in Opener")] + [PropertyDisplay("Early No Mercy in Opener (NOTE: This will break Lv30-53 rotation)")] public bool EarlyNoMercy = true; - [PropertyDisplay("Early Sonic Break in Opener")] + [PropertyDisplay("Early Sonic Break in Opener (NOTE: This will break Lv30-53 rotation)")] public bool EarlySonicBreak = true; }