mirror of
https://github.com/ppy/osu.git
synced 2024-11-18 10:22:56 +08:00
Merge branch 'master' into Cakefy_osu!
This commit is contained in:
commit
12d30cec42
@ -386,10 +386,13 @@ namespace osu.Game.Overlays.Profile
|
|||||||
infoTextLeft.AddText(new DrawableJoinDate(user.JoinDate), boldItalic);
|
infoTextLeft.AddText(new DrawableJoinDate(user.JoinDate), boldItalic);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (user.LastVisit.HasValue)
|
||||||
|
{
|
||||||
infoTextLeft.NewLine();
|
infoTextLeft.NewLine();
|
||||||
infoTextLeft.AddText("Last seen ", lightText);
|
infoTextLeft.AddText("Last seen ", lightText);
|
||||||
infoTextLeft.AddText(new DrawableDate(user.LastVisit), boldItalic);
|
infoTextLeft.AddText(new DrawableDate(user.LastVisit.Value), boldItalic);
|
||||||
infoTextLeft.NewParagraph();
|
infoTextLeft.NewParagraph();
|
||||||
|
}
|
||||||
|
|
||||||
if (user.PlayStyle?.Length > 0)
|
if (user.PlayStyle?.Length > 0)
|
||||||
{
|
{
|
||||||
|
@ -84,7 +84,7 @@ namespace osu.Game.Users
|
|||||||
public string Location;
|
public string Location;
|
||||||
|
|
||||||
[JsonProperty(@"last_visit")]
|
[JsonProperty(@"last_visit")]
|
||||||
public DateTimeOffset LastVisit;
|
public DateTimeOffset? LastVisit;
|
||||||
|
|
||||||
[JsonProperty(@"twitter")]
|
[JsonProperty(@"twitter")]
|
||||||
public string Twitter;
|
public string Twitter;
|
||||||
|
Loading…
Reference in New Issue
Block a user