mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Fix failing test due to early lifetime end
This commit is contained in:
@ -143,8 +143,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
|
||||
public FollowPointLifetimeEntry(OsuHitObject start)
|
||||
{
|
||||
Start = start;
|
||||
|
||||
LifetimeStart = LifetimeEnd = Start.StartTime;
|
||||
LifetimeStart = Start.StartTime;
|
||||
}
|
||||
|
||||
private OsuHitObject end;
|
||||
@ -178,6 +177,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
|
||||
double fadeInTime = fadeOutTime - FollowPointConnection.PREEMPT;
|
||||
|
||||
LifetimeStart = fadeInTime;
|
||||
LifetimeEnd = double.MaxValue; // This will be set by the connection.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user