From 5a315a7f52a0e268f4d7bf6fe7d78989f2fc2196 Mon Sep 17 00:00:00 2001 From: CloneWith Date: Mon, 16 Jun 2025 19:28:57 +0800 Subject: [PATCH] Change mod category to Conversion --- osu.Game.Rulesets.Catch/CatchRuleset.cs | 2 +- osu.Game.Rulesets.Catch/Mods/CatchModHoldToWalk.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/osu.Game.Rulesets.Catch/CatchRuleset.cs b/osu.Game.Rulesets.Catch/CatchRuleset.cs index 3f57dd860a..d03c50ffb1 100644 --- a/osu.Game.Rulesets.Catch/CatchRuleset.cs +++ b/osu.Game.Rulesets.Catch/CatchRuleset.cs @@ -134,6 +134,7 @@ namespace osu.Game.Rulesets.Catch new CatchModDifficultyAdjust(), new CatchModClassic(), new CatchModMirror(), + new CatchModHoldToWalk(), }; case ModType.Automation: @@ -150,7 +151,6 @@ namespace osu.Game.Rulesets.Catch new CatchModFloatingFruits(), new CatchModMuted(), new CatchModNoScope(), - new CatchModHoldToWalk(), }; case ModType.System: diff --git a/osu.Game.Rulesets.Catch/Mods/CatchModHoldToWalk.cs b/osu.Game.Rulesets.Catch/Mods/CatchModHoldToWalk.cs index b2f80bf0ea..a23aa7e467 100644 --- a/osu.Game.Rulesets.Catch/Mods/CatchModHoldToWalk.cs +++ b/osu.Game.Rulesets.Catch/Mods/CatchModHoldToWalk.cs @@ -21,6 +21,7 @@ namespace osu.Game.Rulesets.Catch.Mods public override string Name => "Hold to Walk"; public override string Acronym => "HW"; public override LocalisableString Description => "Hold the Dash key to walk!"; + public override ModType Type => ModType.Conversion; public override double ScoreMultiplier => 1; public override IconUsage? Icon => FontAwesome.Solid.Running; public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(ModRelax) };