You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just stumbled across this while taking a look at the LagCompensationManager - there is a possible System.NullReferenceException in Update:47 which will be caused when networkManager is null.
The issue with this line is, that the && operator has precedence over || so if networkManager is null, it will check the second condition, networkManager.IsClient.
I just stumbled across this while taking a look at the
LagCompensationManager
- there is a possible System.NullReferenceException in Update:47 which will be caused whennetworkManager
is null.The issue with this line is, that the
&&
operator has precedence over||
so ifnetworkManager
is null, it will check the second condition,networkManager.IsClient
.The text was updated successfully, but these errors were encountered: