1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 08:02:55 +08:00

Fix LifetimeChanged being invoked before lifetime is set

This commit is contained in:
smoogipoo 2019-09-24 16:47:34 +09:00
parent 9219aadf76
commit 75cceb9e30

View File

@ -316,8 +316,8 @@ namespace osu.Game.Rulesets.Objects.Drawables
get => lifetimeStart ?? (HitObject.StartTime - InitialLifetimeOffset);
set
{
base.LifetimeStart = value;
lifetimeStart = value;
base.LifetimeStart = value;
}
}