Skip to content

Commit

Permalink
Merge pull request #35 from FFXIV-CombatReborn/ui-error
Browse files Browse the repository at this point in the history
fixed misplaced setting and incomplete description
  • Loading branch information
LTS-FFXIV authored Mar 31, 2024
2 parents a01d265 + 73ba31f commit e120488
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions RotationSolver.Basic/Configuration/Configs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -436,14 +436,15 @@ public const string
[Range(0.005f, 0.05f, ConfigUnitType.Yalms, 0.001f)]
public float SampleLength { get; set; } = 1;

[ConditionBool, UI("Use tasks for making the overlay window faster. (EXPERIMENTAL, ", Parent = nameof(UseOverlayWindow))]
[ConditionBool, UI("Use tasks for making the overlay window faster. (EXPERIMENTAL,WILL CAUSE CRASHES) ", Parent = nameof(UseOverlayWindow))]
private static readonly bool _useTasksForOverlay = false;

[UI("The angle of your vision cone", Parent = nameof(OnlyAttackInVisionCone))]
[Range(0, 90, ConfigUnitType.Degree, 0.02f)]
public float AngleOfVisionCone { get; set; } = 45;

[UI("HP for standard deviation for using AoE heal.", Description = "Basically the health difference between a single party member and the whole party, used for deciding between healing a single party member or AOE healing. Leave this alone if you don't undertand its use.", Parent = nameof(UseHealWhenNotAHealer))]
[UI("HP for standard deviation for using AoE heal.", Description = "Basically the health difference between a single party member and the whole party, used for deciding between healing a single party member or AOE healing. Leave this alone if you don't undertand its use.",
Filter = AutoActionCondition, Section = 1)]
[Range(0, 0.5f, ConfigUnitType.Percent, 0.02f)]
public float HealthDifference { get; set; } = 0.25f;

Expand Down

0 comments on commit e120488

Please sign in to comment.