aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-10-11 00:14:35 +0100
committerJustin Clark-Casey (justincc)2014-10-11 00:14:35 +0100
commit00b23e51aecab7902f0fe0a0b138698ad28caea2 (patch)
treed66910dfbc4d2d809a7e869f5627b4458a7398a7 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
parentminor: spacing cleanup from previous commit 79a4d1ea (diff)
downloadopensim-SC_OLD-00b23e51aecab7902f0fe0a0b138698ad28caea2.zip
opensim-SC_OLD-00b23e51aecab7902f0fe0a0b138698ad28caea2.tar.gz
opensim-SC_OLD-00b23e51aecab7902f0fe0a0b138698ad28caea2.tar.bz2
opensim-SC_OLD-00b23e51aecab7902f0fe0a0b138698ad28caea2.tar.xz
Change name of just added OSSL osForceSit() to osForceOtherSit()
This is somewhat more in keeping with something like osForceAttachToOtherAvatarFromInventory() and potentially allows a separate osForceSit() command with High threat rather than VeryHigh that only sits the owner and can be enabled without enabling sit of other avatars.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index da88cc4..352a35d 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -920,13 +920,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
920 m_OSSL_Functions.osCauseHealing(avatar, healing); 920 m_OSSL_Functions.osCauseHealing(avatar, healing);
921 } 921 }
922 922
923 public void osForceSit(string avatar) 923 public void osForceOtherSit(string avatar)
924 { 924 {
925 m_OSSL_Functions.osForceSit(avatar); 925 m_OSSL_Functions.osForceOtherSit(avatar);
926 } 926 }
927 public void osForceSit(string avatar, string target) 927
928 public void osForceOtherSit(string avatar, string target)
928 { 929 {
929 m_OSSL_Functions.osForceSit(avatar, target); 930 m_OSSL_Functions.osForceOtherSit(avatar, target);
930 } 931 }
931 932
932 public LSL_List osGetPrimitiveParams(LSL_Key prim, LSL_List rules) 933 public LSL_List osGetPrimitiveParams(LSL_Key prim, LSL_List rules)