1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 03:20:16 +08:00

Change mod category to Conversion

This commit is contained in:
CloneWith
2025-06-16 19:28:57 +08:00
Unverified
parent c0993f812e
commit 5a315a7f52
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -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:
@@ -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) };