* Resolve mantis 1182. Doesn't actually implement llGiveInventoryList - merely corrects the signature so that "not implemented" message is displayed rather than a script

compile failure
This commit is contained in:
Justin Clarke Casey
2008-05-09 22:45:40 +00:00
parent 57fea65c82
commit 893d40639c
3 changed files with 5 additions and 4 deletions

View File

@@ -1353,9 +1353,9 @@ namespace OpenSim.Region.ScriptEngine.Common
m_LSL_Functions.llGroundRepel(height, water, tau);
}
public void llGiveInventoryList()
public void llGiveInventoryList(string destination, string category, LSL_Types.list inventory)
{
m_LSL_Functions.llGiveInventoryList();
m_LSL_Functions.llGiveInventoryList(destination, category, inventory);
}
public void llSetVehicleType(int type)