Mantis 6507 keys returned by llGetAgentList incorrect for llList2Key
The type of the keys returned by llGetAgentList corrected to LSL_Keyuser_profiles
parent
652cfa2ee2
commit
4f70e423df
|
@ -5793,13 +5793,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
if (parcelOwned && land.LandData.OwnerID == id ||
|
if (parcelOwned && land.LandData.OwnerID == id ||
|
||||||
parcel && land.LandData.GlobalID == id)
|
parcel && land.LandData.GlobalID == id)
|
||||||
{
|
{
|
||||||
result.Add(ssp.UUID.ToString());
|
result.Add(new LSL_Key(ssp.UUID.ToString()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result.Add(ssp.UUID.ToString());
|
result.Add(new LSL_Key(ssp.UUID.ToString()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Maximum of 100 results
|
// Maximum of 100 results
|
||||||
|
|
Loading…
Reference in New Issue