diff options
author | SignpostMarv | 2012-09-30 12:27:53 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-02 22:14:47 +0100 |
commit | a1679517d39f11591c89203eba914f52c09838ea (patch) | |
tree | 8731208f587cae2f0312a56bc8614e49b06b7500 | |
parent | taking into account the recent introduction of implicit operators (diff) | |
download | opensim-SC_OLD-a1679517d39f11591c89203eba914f52c09838ea.zip opensim-SC_OLD-a1679517d39f11591c89203eba914f52c09838ea.tar.gz opensim-SC_OLD-a1679517d39f11591c89203eba914f52c09838ea.tar.bz2 opensim-SC_OLD-a1679517d39f11591c89203eba914f52c09838ea.tar.xz |
correcting typo
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index e56a36f..31be450 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -3588,7 +3588,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3588 | } | 3588 | } |
3589 | } | 3589 | } |
3590 | 3590 | ||
3591 | protected void DropAttachemntAt(bool checkPerms, LSL_Vector pos, LSL_Rotation rot) | 3591 | protected void DropAttachmentAt(bool checkPerms, LSL_Vector pos, LSL_Rotation rot) |
3592 | { | 3592 | { |
3593 | if (checkPerms && ShoutErrorOnLackingOwnerPerms(ScriptBaseClass.PERMISSION_ATTACH, "Cannot drop attachment")) | 3593 | if (checkPerms && ShoutErrorOnLackingOwnerPerms(ScriptBaseClass.PERMISSION_ATTACH, "Cannot drop attachment")) |
3594 | { | 3594 | { |
@@ -3625,7 +3625,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3625 | CheckThreatLevel(ThreatLevel.Moderate, "osDropAttachmentAt"); | 3625 | CheckThreatLevel(ThreatLevel.Moderate, "osDropAttachmentAt"); |
3626 | m_host.AddScriptLPS(1); | 3626 | m_host.AddScriptLPS(1); |
3627 | 3627 | ||
3628 | DropAttachemntAt(true, pos, rot); | 3628 | DropAttachmentAt(true, pos, rot); |
3629 | } | 3629 | } |
3630 | 3630 | ||
3631 | public void osForceDropAttachmentAt(LSL_Vector pos, LSL_Rotation rot) | 3631 | public void osForceDropAttachmentAt(LSL_Vector pos, LSL_Rotation rot) |
@@ -3633,7 +3633,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3633 | CheckThreatLevel(ThreatLevel.High, "osForceDropAttachmentAt"); | 3633 | CheckThreatLevel(ThreatLevel.High, "osForceDropAttachmentAt"); |
3634 | m_host.AddScriptLPS(1); | 3634 | m_host.AddScriptLPS(1); |
3635 | 3635 | ||
3636 | DropAttachemntAt(false, pos, rot); | 3636 | DropAttachmentAt(false, pos, rot); |
3637 | } | 3637 | } |
3638 | } | 3638 | } |
3639 | } \ No newline at end of file | 3639 | } \ No newline at end of file |