take the deafult on the parameter overlay

0.9.1.0-post-fixes
UbitUmarov 2019-03-19 06:52:57 +00:00
parent 182977a872
commit b10a3ba023
5 changed files with 5 additions and 5 deletions

View File

@ -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 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);
}
}

View File

@ -247,7 +247,7 @@ namespace OpenSim.Region.CoreModules.World.Land
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)
{

View File

@ -491,7 +491,7 @@ namespace OpenSim.Region.CoreModules.World.Land
return;
}
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay = true)
public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay)
{
ScenePresence avatar;

View File

@ -4040,7 +4040,7 @@ namespace OpenSim.Region.Framework.Scenes
ILandChannel landch = m_scene.LandChannel;
if (landch != null)
{
landch.sendClientInitialLandInfo(ControllingClient);
landch.sendClientInitialLandInfo(ControllingClient, true);
}
}

View File

@ -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 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) { }
}
}