Fix wrong code

This commit is contained in:
ekrctb
2021-06-01 14:38:02 +09:00
parent 977d44df87
commit 0f381f7758
2 changed files with 5 additions and 3 deletions

View File

@ -39,7 +39,7 @@ namespace osu.Game.Rulesets.Objects.Pooling
// Cannot write it as `base.LifetimeStart = Entry.LifetimeStart = value` because the change may be blocked (when `HitObjectLifetimeEntry.KeepAlive` is true).
Entry.LifetimeStart = value;
base.LifetimeStart = Entry.LifetimeStart = value;
base.LifetimeStart = Entry.LifetimeStart;
}
}