diff options
author | Tom | 2010-08-04 19:46:41 -0700 |
---|---|---|
committer | Tom | 2010-08-04 19:46:41 -0700 |
commit | 663e25fd3a67654ea60f91850302f2f17496ba59 (patch) | |
tree | 6979128f1238615bdd236fa35900fb489c9da49e | |
parent | If a user has no home position set, tell them so instead of leaving the requ... (diff) | |
download | opensim-SC-663e25fd3a67654ea60f91850302f2f17496ba59.zip opensim-SC-663e25fd3a67654ea60f91850302f2f17496ba59.tar.gz opensim-SC-663e25fd3a67654ea60f91850302f2f17496ba59.tar.bz2 opensim-SC-663e25fd3a67654ea60f91850302f2f17496ba59.tar.xz |
Pacify osGetAvatarList to provide LSL types instead of omv types
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index db43902..80b021f 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -2222,9 +2222,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2222 | { | 2222 | { |
2223 | if (avatar.IsChildAgent == false) | 2223 | if (avatar.IsChildAgent == false) |
2224 | { | 2224 | { |
2225 | result.Add(avatar.UUID); | 2225 | result.Add(new LSL_Key(avatar.UUID.ToString())); |
2226 | result.Add(avatar.AbsolutePosition); | 2226 | result.Add(new LSL_Vector(avatar.AbsolutePosition.X, avatar.AbsolutePosition.Y, avatar.AbsolutePosition.Z)); |
2227 | result.Add(avatar.Name); | 2227 | result.Add(new LSL_String(avatar.Name)); |
2228 | } | 2228 | } |
2229 | } | 2229 | } |
2230 | }); | 2230 | }); |