diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index 60ab75e..704ff15 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -880,9 +880,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
880 | /// Does work if passed key (or keys if overloaded). | 880 | /// Does work if passed key (or keys if overloaded). |
881 | /// </summary> | 881 | /// </summary> |
882 | /// <param name="avatar"></param> | 882 | /// <param name="avatar"></param> |
883 | public void osForceSit(string avatar) | 883 | public void osForceOtherSit(string avatar) |
884 | { | 884 | { |
885 | CheckThreatLevel(ThreatLevel.VeryHigh, "osForceSit"); | 885 | CheckThreatLevel(ThreatLevel.VeryHigh, "osForceOtherSit"); |
886 | 886 | ||
887 | m_host.AddScriptLPS(1); | 887 | m_host.AddScriptLPS(1); |
888 | 888 | ||
@@ -890,14 +890,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
890 | } | 890 | } |
891 | 891 | ||
892 | /// <summary> | 892 | /// <summary> |
893 | /// Overload method of osForceSit(string avatar) to allow a script NOT in the target prim to force | 893 | /// Overload method of osForceOtherSit(string avatar) to allow a script NOT in the target prim to force |
894 | /// an avatar to sit on the target prim using normal methods as if called by the client. | 894 | /// an avatar to sit on the target prim using normal methods as if called by the client. |
895 | /// </summary> | 895 | /// </summary> |
896 | /// <param name="avatar"></param> | 896 | /// <param name="avatar"></param> |
897 | /// <param name="target"></param> | 897 | /// <param name="target"></param> |
898 | public void osForceSit(string avatar, string target) | 898 | public void osForceOtherSit(string avatar, string target) |
899 | { | 899 | { |
900 | CheckThreatLevel(ThreatLevel.VeryHigh, "osForceSit"); | 900 | CheckThreatLevel(ThreatLevel.VeryHigh, "osForceOtherSit"); |
901 | 901 | ||
902 | m_host.AddScriptLPS(1); | 902 | m_host.AddScriptLPS(1); |
903 | 903 | ||