1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 22:33:05 +08:00

Fix CI issues.

This commit is contained in:
smoogipooo 2017-08-18 14:40:36 +09:00
parent 68303accef
commit a47b6526a2

View File

@ -24,7 +24,7 @@ namespace osu.Game.Rulesets
public bool Equals(RulesetInfo other)
{
return this.ID == other.ID && this.Available == other.Available && this.Name == other.Name && this.InstantiationInfo == other.InstantiationInfo;
return ID == other?.ID && Available == other?.Available && Name == other?.Name && InstantiationInfo == other?.InstantiationInfo;
}
}
}