mirror of
https://github.com/ppy/osu.git
synced 2026-05-23 00:20:38 +08:00
Fix nullref
This commit is contained in:
@@ -78,8 +78,8 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
|
||||
private class ProxiedContentContainer : Container
|
||||
{
|
||||
public override double LifetimeStart => Parent.LifetimeStart;
|
||||
public override double LifetimeEnd => Parent.LifetimeEnd;
|
||||
public override double LifetimeStart => Parent?.LifetimeStart ?? base.LifetimeStart;
|
||||
public override double LifetimeEnd => Parent?.LifetimeEnd ?? base.LifetimeEnd;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user