Fix a null ref on region crossing
parent
bc6995f921
commit
89c762209c
|
@ -5596,7 +5596,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
public LSL_String llGetLandOwnerAt(LSL_Vector pos)
|
public LSL_String llGetLandOwnerAt(LSL_Vector pos)
|
||||||
{
|
{
|
||||||
m_host.AddScriptLPS(1);
|
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>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue