Fix legacy skin transformers potentially ignoring source implementations

This commit is contained in:
Salman Ahmed
2021-05-27 05:15:29 +03:00
parent 53cbf369d7
commit fbc316ea1d
4 changed files with 25 additions and 17 deletions

View File

@ -120,12 +120,14 @@ namespace osu.Game.Rulesets.Mania.Skinning.Legacy
case ManiaSkinComponents.StageForeground:
return new LegacyStageForeground();
default:
return Source.GetDrawableComponent(component);
}
break;
default:
return Source.GetDrawableComponent(component);
}
return null;
}
private Drawable getResult(HitResult result)