aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-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);