missing file and remove warnings

httptests
UbitUmarov 2017-04-15 10:56:46 +01:00
parent 0f7ffc56ce
commit b52f7b9203
3 changed files with 4 additions and 2 deletions

View File

@ -102,6 +102,8 @@ namespace OpenSim.Region.Framework.Interfaces
ScenePresence CrossAgentToNewRegionAsync(ScenePresence agent, Vector3 pos, GridRegion neighbourRegion, bool isFlying, EntityTransferContext ctx);
bool CrossAgentCreateFarChild(ScenePresence agent, GridRegion neighbourRegion, Vector3 pos, EntityTransferContext ctx);
bool HandleIncomingSceneObject(SceneObjectGroup so, Vector3 newPosition);
}

View File

@ -153,7 +153,7 @@ namespace OpenSim.Region.Framework.Scenes
timeLastChanged = DateTime.UtcNow.Ticks;
if (!m_hasGroupChanged)
timeFirstChanged = DateTime.UtcNow.Ticks;
if (m_rootPart != null && m_rootPart.UUID != null && m_scene != null)
if (m_rootPart != null && m_scene != null)
{
/*
if (m_rand == null)

View File

@ -6488,7 +6488,7 @@ namespace OpenSim.Region.Framework.Scenes
if (check)
{
// check is relative to current parcel only
if (currentParcelUUID == null || oldhide == currentParcelHide)
if (oldhide == currentParcelHide)
return;
allpresences = m_scene.GetScenePresences();