1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 07:43:42 +08:00

Fix nullref

This commit is contained in:
smoogipoo
2019-11-01 15:34:17 +09:00
Unverified
parent 02a7f92d18
commit bfe7309964
@@ -318,7 +318,9 @@ namespace osu.Game.Rulesets.Osu.Tests
{
end = value;
bindHitObject(end);
if (end != null)
bindHitObject(end);
refreshFollowPoints();
}
}