diff options
Diffstat (limited to '')
-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 |