Implements llGetInventoryPermMask()

This commit is contained in:
alondria
2008-03-24 21:56:52 +00:00
parent dd6a9ffbc7
commit 15a22e993d
3 changed files with 25 additions and 5 deletions

View File

@@ -1637,9 +1637,9 @@ namespace OpenSim.Region.ScriptEngine.Common
m_LSL_Functions.llSetObjectPermMask(mask, value);
}
public void llGetInventoryPermMask(string item, int mask)
public int llGetInventoryPermMask(string item, int mask)
{
m_LSL_Functions.llGetInventoryPermMask(item, mask);
return m_LSL_Functions.llGetInventoryPermMask(item, mask);
}
public void llSetInventoryPermMask(string item, int mask, int value)