mirror of
https://github.com/ppy/osu.git
synced 2025-02-21 23:23:52 +08:00
Fix swells showing hit circles on intermediate judgements
This commit is contained in:
parent
35b4ab5456
commit
a0887a600f
@ -229,7 +229,10 @@ namespace osu.Game.Rulesets.Taiko.UI
|
|||||||
if (!DisplayJudgements)
|
if (!DisplayJudgements)
|
||||||
return;
|
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)
|
judgementContainer.Add(new DrawableTaikoJudgement(result, judgedObject)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user