mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09: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