Make llTeleportAgent conform to Magnum SL Server and add llTeleportAgentGlobalCoords()

This commit is contained in:
Melanie
2012-06-08 23:37:25 +02:00
parent efff5a7c0d
commit 853449d5bc
3 changed files with 73 additions and 5 deletions

View File

@@ -1835,6 +1835,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_LSL_Functions.llTeleportAgent(agent, simname, pos, lookAt);
}
public void llTeleportAgentGlobalCoords(string agent, LSL_Vector global, LSL_Vector pos, LSL_Vector lookAt)
{
m_LSL_Functions.llTeleportAgentGlobalCoords(agent, global, pos, lookAt);
}
public void llTeleportAgentHome(string agent)
{
m_LSL_Functions.llTeleportAgentHome(agent);