Output ruleset instantiation info

This commit is contained in:
smoogipoo 2018-05-07 14:28:30 +09:00
parent 6867886f4c
commit 68441f1ef0
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public IBeatmap GetPlayableBeatmap(RulesetInfo ruleset)
// Check if the beatmap can be converted
if (!converter.CanConvert)
throw new BeatmapInvalidForRulesetException($"{nameof(Beatmaps.Beatmap)} can not be converted for the ruleset (ruleset: {ruleset}, converter: {converter}).");
throw new BeatmapInvalidForRulesetException($"{nameof(Beatmaps.Beatmap)} can not be converted for the ruleset (ruleset: {ruleset.InstantiationInfo}, converter: {converter}).");
// Apply conversion mods
foreach (var mod in Mods.Value.OfType<IApplicableToBeatmapConverter>())