mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Make ruleset id non-nullable
This commit is contained in:
@ -458,11 +458,13 @@ namespace osu.Game
|
||||
{
|
||||
foreach (var dkb in existingSettings)
|
||||
{
|
||||
if (dkb.RulesetID == null) continue;
|
||||
|
||||
usage.Realm.Add(new RealmRulesetSetting
|
||||
{
|
||||
ValueString = dkb.StringValue,
|
||||
Key = dkb.Key,
|
||||
RulesetID = dkb.RulesetID,
|
||||
RulesetID = dkb.RulesetID.Value,
|
||||
Variant = dkb.Variant
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user