mirror of
https://github.com/ppy/osu
synced 2024-12-14 10:57:41 +00:00
Add owner id to PlaylistItem
This commit is contained in:
parent
593f11d0ff
commit
8a941fa422
@ -718,6 +718,7 @@ namespace osu.Game.Online.Multiplayer
|
||||
var playlistItem = new PlaylistItem
|
||||
{
|
||||
ID = item.ID,
|
||||
OwnerID = item.OwnerID,
|
||||
Beatmap = { Value = beatmap },
|
||||
Ruleset = { Value = ruleset },
|
||||
Expired = item.Expired
|
||||
|
@ -18,6 +18,9 @@ namespace osu.Game.Online.Rooms
|
||||
[JsonProperty("id")]
|
||||
public long ID { get; set; }
|
||||
|
||||
[JsonProperty("owner_id")]
|
||||
public int OwnerID { get; set; }
|
||||
|
||||
[JsonProperty("beatmap_id")]
|
||||
public int BeatmapID { get; set; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user