Apply suggested changes

This commit is contained in:
HoutarouOreki
2018-05-23 11:17:13 +02:00
parent 8e9dde97ce
commit 10bc3917b5
2 changed files with 16 additions and 60 deletions

View File

@ -364,12 +364,12 @@ namespace osu.Game.Overlays.Profile
else
{
infoTextLeft.AddText("Joined ", lightText);
infoTextLeft.AddText(new DrawableDate("{0:MMMM yyyy}", user.JoinDate, "{0:d MMMM yyyy}"), boldItalic);
infoTextLeft.AddText(new DrawableDate(user.JoinDate, "{0:MMMM yyyy}", "{0:d MMMM yyyy}"), boldItalic);
}
infoTextLeft.NewLine();
infoTextLeft.AddText("Last seen ", lightText);
infoTextLeft.AddText(new DrawableDate(user.LastVisit, "{0:d MMMM yyyy H:mm \"UTC\"z}"), boldItalic);
infoTextLeft.AddText(new DrawableDate(user.LastVisit, null, "{0:d MMMM yyyy H:mm \"UTC\"z}"), boldItalic);
infoTextLeft.NewParagraph();
if (user.PlayStyle?.Length > 0)