1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:52:55 +08:00

Make all OsuModObjectScaleTween implementations incompatible with each other

This commit is contained in:
Bartłomiej Dach 2022-04-03 19:14:45 +02:00
parent 5e02ba353b
commit e99d0f9fae
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -24,7 +24,7 @@ namespace osu.Game.Rulesets.Osu.Mods
protected virtual float EndScale => 1;
public override Type[] IncompatibleMods => new[] { typeof(IRequiresApproachCircles), typeof(OsuModSpinIn) };
public override Type[] IncompatibleMods => new[] { typeof(IRequiresApproachCircles), typeof(OsuModSpinIn), typeof(OsuModObjectScaleTween) };
protected override void ApplyIncreasedVisibilityState(DrawableHitObject hitObject, ArmedState state)
{