Store mods to array and update test scenes

This commit is contained in:
Dean Herbert
2022-07-12 17:51:20 +09:00
parent 12a56e36bd
commit 0fe3bac173
2 changed files with 26 additions and 25 deletions

View File

@ -57,7 +57,7 @@ namespace osu.Game.Online.API.Requests.Responses
public DateTimeOffset? EndedAt { get; set; }
[JsonProperty("mods")]
public List<APIMod> Mods { get; set; } = new List<APIMod>();
public APIMod[] Mods { get; set; } = Array.Empty<APIMod>();
[JsonIgnore]
[JsonProperty("created_at")]