Fix using private constructor on MessagePack object

This commit is contained in:
Salman Ahmed
2021-02-02 17:45:07 +03:00
parent 50d57a3931
commit 62d0036c81

View File

@ -26,7 +26,7 @@ namespace osu.Game.Online.Rooms
public readonly float? DownloadProgress;
[JsonConstructor]
private BeatmapAvailability(DownloadState state, float? downloadProgress = null)
public BeatmapAvailability(DownloadState state, float? downloadProgress = null)
{
State = state;
DownloadProgress = downloadProgress;