mirror of
https://github.com/ppy/osu.git
synced 2025-01-18 21:02:56 +08:00
Remove redundant statement (lifetime is set in base)
This commit is contained in:
parent
b877a29737
commit
e6474e6ff7
@ -212,10 +212,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
|||||||
// LifetimeStart is already computed using HitObjectLifetimeEntry's InitialLifetimeOffset.
|
// LifetimeStart is already computed using HitObjectLifetimeEntry's InitialLifetimeOffset.
|
||||||
// We override this with DHO's InitialLifetimeOffset for a non-pooled DHO.
|
// We override this with DHO's InitialLifetimeOffset for a non-pooled DHO.
|
||||||
if (entry is SyntheticHitObjectEntry)
|
if (entry is SyntheticHitObjectEntry)
|
||||||
entry.LifetimeStart = HitObject.StartTime - InitialLifetimeOffset;
|
LifetimeStart = HitObject.StartTime - InitialLifetimeOffset;
|
||||||
|
|
||||||
LifetimeStart = entry.LifetimeStart;
|
|
||||||
LifetimeEnd = entry.LifetimeEnd;
|
|
||||||
|
|
||||||
ensureEntryHasResult();
|
ensureEntryHasResult();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user