mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 12:22:57 +08:00
Fix nullref
This commit is contained in:
parent
02a7f92d18
commit
bfe7309964
@ -318,7 +318,9 @@ namespace osu.Game.Rulesets.Osu.Tests
|
||||
{
|
||||
end = value;
|
||||
|
||||
bindHitObject(end);
|
||||
if (end != null)
|
||||
bindHitObject(end);
|
||||
|
||||
refreshFollowPoints();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user