mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Fix llGetParcelPrimOwners so that it returns LSL_Strings in the list rather than C# Strings
This commit is contained in:
@@ -10541,7 +10541,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
{
|
||||
foreach (KeyValuePair<UUID, int> detectedParams in land.GetLandObjectOwners())
|
||||
{
|
||||
ret.Add(detectedParams.Key.ToString());
|
||||
ret.Add(new LSL_String(detectedParams.Key.ToString()));
|
||||
ret.Add(detectedParams.Value);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user