mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
Mantis 6507 keys returned by llGetAgentList incorrect for llList2Key
The type of the keys returned by llGetAgentList corrected to LSL_Key
This commit is contained in:
committed by
Justin Clark-Casey (justincc)
parent
8f32e16497
commit
efcbae372b
@@ -5770,13 +5770,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
if (parcelOwned && land.LandData.OwnerID == id ||
|
||||
parcel && land.LandData.GlobalID == id)
|
||||
{
|
||||
result.Add(ssp.UUID.ToString());
|
||||
result.Add(new LSL_Key(ssp.UUID.ToString()));
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
result.Add(ssp.UUID.ToString());
|
||||
result.Add(new LSL_Key(ssp.UUID.ToString()));
|
||||
}
|
||||
}
|
||||
// Maximum of 100 results
|
||||
|
||||
Reference in New Issue
Block a user