* 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
0.6.0-stable
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)

View File

@ -4172,7 +4172,7 @@ namespace OpenSim.Region.ScriptEngine.Common
NotImplemented("llGroundRepel");
}
public void llGiveInventoryList()
public void llGiveInventoryList(string destination, string category, LSL_Types.list inventory)
{
m_host.AddScriptLPS(1);
NotImplemented("llGiveInventoryList");

View File

@ -445,7 +445,8 @@ namespace OpenSim.Region.ScriptEngine.Common
void llParticleSystem(LSL_Types.list rules);
//wiki: llGroundRepel(double height, integer water, double tau)
void llGroundRepel(double height, int water, double tau);
void llGiveInventoryList();
//wiki: llGiveInventoryList(string destination, string category, LSL_Types.list inventory)
void llGiveInventoryList(string destination, string category, LSL_Types.list inventory);
//wiki: llSetVehicleType(integer type)
void llSetVehicleType(int type);
//wiki: llSetVehicledoubleParam(integer param, double value)