Fix llGetParcelPrimOwners so that it returns LSL_Strings in the list rather than C# Strings

This commit is contained in:
Tom
2011-03-29 09:28:27 -07:00
parent c39b391b6a
commit 45548873bd

View File

@@ -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);
}
}