Make LegacyID nullable

The -1 default was getting stored to the database.
This commit is contained in:
Dean Herbert
2018-03-06 17:29:58 +09:00
parent a6460832f4
commit e82cadc811
5 changed files with 5 additions and 5 deletions

View File

@ -145,7 +145,7 @@ namespace osu.Game.Rulesets.Osu
public override SettingsSubsection CreateSettings() => new OsuSettings();
public override int LegacyID => 0;
public override int? LegacyID => 0;
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new OsuReplayFrame();