1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 03:25:11 +08:00

Merge pull request #26162 from Gabixel/alternate-daycore-with-classic-hotkey

Cycle between Daycore and Half Time mod when using classic hotkeys style
This commit is contained in:
Bartłomiej Dach 2023-12-28 00:16:51 +01:00 committed by GitHub
commit 10106e20c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ namespace osu.Game.Overlays.Mods.Input
{ {
[Key.Q] = new[] { typeof(ModEasy) }, [Key.Q] = new[] { typeof(ModEasy) },
[Key.W] = new[] { typeof(ModNoFail) }, [Key.W] = new[] { typeof(ModNoFail) },
[Key.E] = new[] { typeof(ModHalfTime) }, [Key.E] = new[] { typeof(ModHalfTime), typeof(ModDaycore) },
[Key.A] = new[] { typeof(ModHardRock) }, [Key.A] = new[] { typeof(ModHardRock) },
[Key.S] = new[] { typeof(ModSuddenDeath), typeof(ModPerfect) }, [Key.S] = new[] { typeof(ModSuddenDeath), typeof(ModPerfect) },
[Key.D] = new[] { typeof(ModDoubleTime), typeof(ModNightcore) }, [Key.D] = new[] { typeof(ModDoubleTime), typeof(ModNightcore) },