aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-07-17 23:47:45 +0000
committerAdam Frisby2007-07-17 23:47:45 +0000
commitf65808ab07e708cbbc9c970f9a97ef691bb91bdb (patch)
tree564668d69d64e864f50f13ea3e84a3069dc9fa7b /OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs
parent* More LSL related fun (diff)
downloadopensim-SC_OLD-f65808ab07e708cbbc9c970f9a97ef691bb91bdb.zip
opensim-SC_OLD-f65808ab07e708cbbc9c970f9a97ef691bb91bdb.tar.gz
opensim-SC_OLD-f65808ab07e708cbbc9c970f9a97ef691bb91bdb.tar.bz2
opensim-SC_OLD-f65808ab07e708cbbc9c970f9a97ef691bb91bdb.tar.xz
* More LSL changes (and fixing a compile warning)
* More attempted fixes for the phantom remoting bug.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs b/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs
index 982cd65..6ef968b 100644
--- a/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs
+++ b/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs
@@ -136,7 +136,7 @@ namespace OpenSim.Region.Scripting
136 public Key osAvatarOnSitTarget() 136 public Key osAvatarOnSitTarget()
137 { 137 {
138 //TODO: Follow this as Children is chanced to be of type entity to support ScenePresences 138 //TODO: Follow this as Children is chanced to be of type entity to support ScenePresences
139 foreach (KeyValuePair<Key, Primitive> Child in Task.Children) 139 foreach (KeyValuePair<Key, EntityBase> Child in Task.Children)
140 { 140 {
141 if (Child.Value is ScenePresence) 141 if (Child.Value is ScenePresence)
142 { 142 {