From 1e34ed3b01face4aba08524a4d5010dac21fa54c Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Tue, 11 Feb 2025 13:44:03 -0500 Subject: [PATCH] add "since" attribute for new safe dash feature --- BossMod/ActionTweaks/ActionTweaksConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BossMod/ActionTweaks/ActionTweaksConfig.cs b/BossMod/ActionTweaks/ActionTweaksConfig.cs index 5b38395729..6ad6017e83 100644 --- a/BossMod/ActionTweaks/ActionTweaksConfig.cs +++ b/BossMod/ActionTweaks/ActionTweaksConfig.cs @@ -77,6 +77,6 @@ public enum GroundTargetingMode [PropertyDisplay("Automatic target selection for ground-targeted abilities")] public GroundTargetingMode GTMode = GroundTargetingMode.Manual; - [PropertyDisplay("Try to prevent dashing into AOEs", tooltip: "Prevent automatic use of damaging gap closers (like WAR Onslaught) if they would move you into a dangerous area. May not work as expected in instances that do not have modules.")] + [PropertyDisplay("Try to prevent dashing into AOEs", tooltip: "Prevent automatic use of damaging gap closers (like WAR Onslaught) if they would move you into a dangerous area. May not work as expected in instances that do not have modules.", since: "0.0.0.290")] public bool PreventDangerousDash = false; }