diff --git a/osu.Game/Graphics/UserInterface/Counter.cs b/osu.Game/Graphics/UserInterface/Counter.cs index 5296bef1c0..c2910bb490 100644 --- a/osu.Game/Graphics/UserInterface/Counter.cs +++ b/osu.Game/Graphics/UserInterface/Counter.cs @@ -24,14 +24,14 @@ namespace osu.Game.Graphics.UserInterface public bool IsLit { get { return isLit; } - set + protected set { - if (value && !isLit && ParentCounter.IsCounting) - IncreaseCount(); if (isLit != value) { isLit = value; UpdateGlowSprite(); + if (value && ParentCounter.IsCounting) + IncreaseCount(); } } }