diff --git a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs
index b74d53eef0..24edcbfc98 100644
--- a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs
+++ b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs
@@ -268,8 +268,6 @@ namespace osu.Game.Rulesets.Catch.UI
///
public bool HyperDashing => hyperDashModifier != 1;
- private const float hyperdash_transition_length = 180;
-
///
/// Set hyperdash state.
///
@@ -277,6 +275,8 @@ namespace osu.Game.Rulesets.Catch.UI
/// When this catcher crosses this position, this catcher ends hyperdashing.
public void SetHyperdashState(double modifier = 1, float targetPosition = -1)
{
+ const float hyperdash_transition_length = 180;
+
bool previouslyHyperDashing = HyperDashing;
if (modifier <= 1 || X == targetPosition)
{