Cut amount of code down for the spinner judgement fix

This commit is contained in:
Roxie is Flux3on 2021-10-24 15:29:47 -07:00
parent b8308b9715
commit 386910ca2e

View File

@ -40,12 +40,9 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
if (JudgedObject?.HitObject is OsuHitObject osuObject)
{
if (JudgedObject?.HitObject is Spinner)
{
Position = osuObject.Position;
} else
{
else
Position = osuObject.StackedEndPosition;
}
Scale = new Vector2(osuObject.Scale);
}
}