* Don't fail the client login if there are no OnClientConnect listeners
parent
f5ff2eff24
commit
bd41639a68
|
@ -479,7 +479,8 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
if (client is IClientCore)
|
||||
{
|
||||
handlerClientConnect = OnClientConnect;
|
||||
handlerClientConnect((IClientCore) client);
|
||||
if (handlerClientConnect != null)
|
||||
handlerClientConnect((IClientCore)client);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue