1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Fix not being able to hit two stacked circles by pressing both buttons/keys on the same frame.

This commit is contained in:
Dean Herbert 2017-01-08 20:52:19 +08:00
parent 8bfcfbc276
commit 8ba5c1c15d

View File

@ -42,6 +42,8 @@ namespace osu.Game.Modes.Osu.Objects.Drawables
Colour = osuObject.Colour, Colour = osuObject.Colour,
Hit = () => Hit = () =>
{ {
if (Judgement.Result.HasValue) return false;
((PositionalJudgementInfo)Judgement).PositionOffset = Vector2.Zero; //todo: set to correct value ((PositionalJudgementInfo)Judgement).PositionOffset = Vector2.Zero; //todo: set to correct value
UpdateJudgement(true); UpdateJudgement(true);
return true; return true;