another..

This commit is contained in:
UbitUmarov
2020-08-26 15:49:43 +01:00
parent e6c4184680
commit 088a778853
6 changed files with 29 additions and 33 deletions

View File

@@ -2656,7 +2656,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
if (newAgent)
{
// we may already had lost this sp
if(sp == null || sp.IsDeleted || sp.ClientView == null) // something bad already happened
if(sp == null || sp.IsDeleted || sp.ControllingClient == null) // something bad already happened
return;
Scene scene = sp.Scene;
@@ -2679,7 +2679,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
if (m_eqModule != null)
{
if(sp == null || sp.IsDeleted || sp.ClientView == null) // something bad already happened
if(sp == null || sp.IsDeleted || sp.ControllingClient == null) // something bad already happened
return;
m_log.DebugFormat("{0} {1} is sending {2} EnableSimulator for neighbour region {3}(loc=<{4},{5}>,siz=<{6},{7}>) " +