1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Fix swells showing hit circles on intermediate judgements

This commit is contained in:
smoogipoo 2018-08-02 21:08:06 +09:00
parent 35b4ab5456
commit a0887a600f

View File

@ -229,7 +229,10 @@ namespace osu.Game.Rulesets.Taiko.UI
if (!DisplayJudgements)
return;
if (judgedObject.DisplayJudgement && judgementContainer.FirstOrDefault(j => j.JudgedObject == judgedObject) == null)
if (!judgedObject.DisplayJudgement)
return;
if (judgementContainer.FirstOrDefault(j => j.JudgedObject == judgedObject) == null)
{
judgementContainer.Add(new DrawableTaikoJudgement(result, judgedObject)
{