1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 15:27:20 +08:00

Don't handle repeat keys.

This commit is contained in:
smoogipooo 2017-05-22 16:42:14 +09:00
parent f9eb448f16
commit 4200e05fe7

View File

@ -86,6 +86,9 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
if (args.Key != Key)
return false;
if (args.Repeat)
return false;
return UpdateJudgement(true);
}
}