1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-18 02:43:07 +08:00

Make RulesetID non-nullable

This commit is contained in:
Dean Herbert 2020-12-11 18:14:33 +09:00
parent d3b2e2b36e
commit aedb18b9f2

View File

@ -16,7 +16,7 @@ namespace osu.Game.Online.RealtimeMultiplayer
{
public int BeatmapID { get; set; }
public int? RulesetID { get; set; }
public int RulesetID { get; set; }
public string Name { get; set; } = "Unnamed room";