This commit is contained in:
Aleksander Waage 2020-08-14 19:30:23 +02:00
parent 86412fbd82
commit 059e3e28f8

View File

@ -56,7 +56,7 @@ namespace QSB
public static TransformSync.TransformSync GetTransformSync(uint id)
{
return TransformSyncs.First(x => x != null && x.netId.Value == id);
return TransformSyncs.FirstOrDefault(x => x != null && x.netId.Value == id);
}
public static AnimationSync GetAnimationSync(uint id)