From 8ba5c1c15de7636b8bcd95069c1215f1fb30c3f4 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sun, 8 Jan 2017 20:52:19 +0800 Subject: [PATCH] Fix not being able to hit two stacked circles by pressing both buttons/keys on the same frame. --- osu.Game.Modes.Osu/Objects/Drawables/DrawableHitCircle.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game.Modes.Osu/Objects/Drawables/DrawableHitCircle.cs b/osu.Game.Modes.Osu/Objects/Drawables/DrawableHitCircle.cs index b2179d95d0..5143bd4af8 100644 --- a/osu.Game.Modes.Osu/Objects/Drawables/DrawableHitCircle.cs +++ b/osu.Game.Modes.Osu/Objects/Drawables/DrawableHitCircle.cs @@ -42,6 +42,8 @@ namespace osu.Game.Modes.Osu.Objects.Drawables Colour = osuObject.Colour, Hit = () => { + if (Judgement.Result.HasValue) return false; + ((PositionalJudgementInfo)Judgement).PositionOffset = Vector2.Zero; //todo: set to correct value UpdateJudgement(true); return true;