mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Remove redundant statement (lifetime is set in base)
This commit is contained in:
@ -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();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user