From ea30445efc41a508c4fe865956ccabee13b7d9b3 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Thu, 30 Sep 2021 12:03:34 +0900 Subject: [PATCH] Remove verbatim string --- .../Lounge/Components/DrawableRoomParticipantsList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Screens/OnlinePlay/Lounge/Components/DrawableRoomParticipantsList.cs b/osu.Game/Screens/OnlinePlay/Lounge/Components/DrawableRoomParticipantsList.cs index db1686ef4a..e9be805d44 100644 --- a/osu.Game/Screens/OnlinePlay/Lounge/Components/DrawableRoomParticipantsList.cs +++ b/osu.Game/Screens/OnlinePlay/Lounge/Components/DrawableRoomParticipantsList.cs @@ -261,7 +261,7 @@ namespace osu.Game.Screens.OnlinePlay.Lounge.Components hostAvatar.User = host.NewValue; hostText.Clear(); - hostText.AddText(@"hosted by "); + hostText.AddText("hosted by "); if (host.NewValue != null) hostText.AddUserLink(host.NewValue); }