aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
authorMelanie2012-06-11 16:45:52 +0100
committerMelanie2012-06-11 16:45:52 +0100
commit71ba85137f6b85db7c617bd6ee8ef2081b9fab61 (patch)
treeae03d370ddc94d4a0b5bdf25af457ce4f8467f1a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime
parentCreate avatar entries necessary to stop new v3 avatars being clouds (pants, s... (diff)
downloadopensim-SC_OLD-71ba85137f6b85db7c617bd6ee8ef2081b9fab61.zip
opensim-SC_OLD-71ba85137f6b85db7c617bd6ee8ef2081b9fab61.tar.gz
opensim-SC_OLD-71ba85137f6b85db7c617bd6ee8ef2081b9fab61.tar.bz2
opensim-SC_OLD-71ba85137f6b85db7c617bd6ee8ef2081b9fab61.tar.xz
Commitig the Avination implementation of llTeleportAgent and
llTeleportAgentGlobalCoords. These do NOT use PERMISSION_TELEPORT like their SL counterparts because that permission is not yet understood by TPVs based on v1.x.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index c0bf29c..06f5617 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -1833,6 +1833,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1833 m_LSL_Functions.llTargetRemove(number); 1833 m_LSL_Functions.llTargetRemove(number);
1834 } 1834 }
1835 1835
1836 public void llTeleportAgent(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt)
1837 {
1838 m_LSL_Functions.llTeleportAgent(agent, simname, pos, lookAt);
1839 }
1840
1841 public void llTeleportAgentGlobalCoords(string agent, LSL_Vector global, LSL_Vector pos, LSL_Vector lookAt)
1842 {
1843 m_LSL_Functions.llTeleportAgentGlobalCoords(agent, global, pos, lookAt);
1844 }
1845
1836 public void llTeleportAgentHome(string agent) 1846 public void llTeleportAgentHome(string agent)
1837 { 1847 {
1838 m_LSL_Functions.llTeleportAgentHome(agent); 1848 m_LSL_Functions.llTeleportAgentHome(agent);