mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Merge branch 'master' into careminster-presence-refactor
This commit is contained in:
@@ -5824,7 +5824,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
public LSL_String llGetLandOwnerAt(LSL_Vector pos)
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
return World.LandChannel.GetLandObject((float)pos.x, (float)pos.y).LandData.OwnerID.ToString();
|
||||
ILandObject land = World.LandChannel.GetLandObject((float)pos.x, (float)pos.y);
|
||||
if (land == null)
|
||||
return UUID.Zero.ToString();
|
||||
return land.LandData.OwnerID.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -485,7 +485,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Plugins
|
||||
}
|
||||
else
|
||||
{
|
||||
// If full circle is asked for, just add it
|
||||
sensedEntities.Add(new SensedEntity(dis, presence.UUID));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user