We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98debc8 commit 983eea5Copy full SHA for 983eea5
osu.Game/Screens/Play/ReplayPlayer.cs
@@ -119,6 +119,9 @@ private void load(OsuConfigManager config)
119
120
protected override Drawable CreateOverlayComponents()
121
{
122
+ if (Mods.Value.Any(m => m is ModCinema))
123
+ return Empty();
124
+
125
OsuTextFlowContainer message = new OsuTextFlowContainer(cp => cp.Font = OsuFont.Style.Body) { AutoSizeAxes = Axes.Both };
126
message.AddText("Watching ");
127
message.AddText(Score.ScoreInfo.User.Username, s => s.Font = s.Font.With(weight: FontWeight.SemiBold));
0 commit comments