aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 366b20c..b5a3ad9 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -3185,7 +3185,12 @@ namespace OpenSim.Region.ScriptEngine.Common
3185 public void llAllowInventoryDrop(int add) 3185 public void llAllowInventoryDrop(int add)
3186 { 3186 {
3187 m_host.AddScriptLPS(1); 3187 m_host.AddScriptLPS(1);
3188 NotImplemented("llAllowInventoryDrop"); 3188
3189 if(add != 0)
3190 m_host.ParentGroup.RootPart.AllowedDrop = true;
3191 else
3192 m_host.ParentGroup.RootPart.AllowedDrop = false;
3193
3189 } 3194 }
3190 3195
3191 public LSL_Types.Vector3 llGetSunDirection() 3196 public LSL_Types.Vector3 llGetSunDirection()