diff --git a/src/yugecin/opsudance/core/state/specialstates/BubbleNotificationState.java b/src/yugecin/opsudance/core/state/specialstates/BubbleNotificationState.java index 9251142b..8cdfb083 100644 --- a/src/yugecin/opsudance/core/state/specialstates/BubbleNotificationState.java +++ b/src/yugecin/opsudance/core/state/specialstates/BubbleNotificationState.java @@ -222,13 +222,15 @@ public class BubbleNotificationState implements EventListener BubbleNotificationState.DISPLAY_TIME) { isFading = true; float progress = (float) (timeShown - BubbleNotificationState.DISPLAY_TIME) / BubbleNotificationState.OUT_TIME; - textColor.a = borderColor.a = bgcol.a = 1f - progress; + textColor.a = borderColor.a = 1f - progress; + bgcol.a = borderColor.a * 0.8f; } }