take the deafult on the parameter overlay
parent
182977a872
commit
b10a3ba023
|
@ -98,6 +98,6 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||||
|
|
||||||
void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id);
|
void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id);
|
||||||
void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id);
|
void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id);
|
||||||
void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay = true);
|
void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,7 +247,7 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
m_landManagementModule.setParcelOtherCleanTime(remoteClient, localID, otherCleanTime);
|
m_landManagementModule.setParcelOtherCleanTime(remoteClient, localID, otherCleanTime);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay = true)
|
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay)
|
||||||
{
|
{
|
||||||
if (m_landManagementModule != null)
|
if (m_landManagementModule != null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -491,7 +491,7 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay = true)
|
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay)
|
||||||
{
|
{
|
||||||
ScenePresence avatar;
|
ScenePresence avatar;
|
||||||
|
|
||||||
|
|
|
@ -4040,7 +4040,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
ILandChannel landch = m_scene.LandChannel;
|
ILandChannel landch = m_scene.LandChannel;
|
||||||
if (landch != null)
|
if (landch != null)
|
||||||
{
|
{
|
||||||
landch.sendClientInitialLandInfo(ControllingClient);
|
landch.sendClientInitialLandInfo(ControllingClient, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -119,6 +119,6 @@ namespace OpenSim.Tests.Common
|
||||||
|
|
||||||
public void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {}
|
public void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {}
|
||||||
public void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {}
|
public void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {}
|
||||||
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay = true) { }
|
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay) { }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue