1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 14:23:14 +08:00

Fix nullref

This commit is contained in:
smoogipoo 2019-11-01 15:34:17 +09:00
parent 02a7f92d18
commit bfe7309964

View File

@ -318,7 +318,9 @@ namespace osu.Game.Rulesets.Osu.Tests
{ {
end = value; end = value;
bindHitObject(end); if (end != null)
bindHitObject(end);
refreshFollowPoints(); refreshFollowPoints();
} }
} }