aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
diff options
context:
space:
mode:
authoralondria2008-03-24 21:56:52 +0000
committeralondria2008-03-24 21:56:52 +0000
commit15a22e993d7097cf4cf0eb42121921c3fd4ee745 (patch)
tree8796fccaa3139442bd40a346dfd228e38bf17def /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
parent* OBB: Flipped the -y face normal so ray casting against the -y face correctl... (diff)
downloadopensim-SC_OLD-15a22e993d7097cf4cf0eb42121921c3fd4ee745.zip
opensim-SC_OLD-15a22e993d7097cf4cf0eb42121921c3fd4ee745.tar.gz
opensim-SC_OLD-15a22e993d7097cf4cf0eb42121921c3fd4ee745.tar.bz2
opensim-SC_OLD-15a22e993d7097cf4cf0eb42121921c3fd4ee745.tar.xz
Implements llGetInventoryPermMask()
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
index ce033ad..c6b15d5 100644
--- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
@@ -1637,9 +1637,9 @@ namespace OpenSim.Region.ScriptEngine.Common
1637 m_LSL_Functions.llSetObjectPermMask(mask, value); 1637 m_LSL_Functions.llSetObjectPermMask(mask, value);
1638 } 1638 }
1639 1639
1640 public void llGetInventoryPermMask(string item, int mask) 1640 public int llGetInventoryPermMask(string item, int mask)
1641 { 1641 {
1642 m_LSL_Functions.llGetInventoryPermMask(item, mask); 1642 return m_LSL_Functions.llGetInventoryPermMask(item, mask);
1643 } 1643 }
1644 1644
1645 public void llSetInventoryPermMask(string item, int mask, int value) 1645 public void llSetInventoryPermMask(string item, int mask, int value)