* Resolve mantis 1182. Doesn't actually implement llGiveInventoryList - merely corrects the signature so that "not implemented" message is displayed rather than a script
compile failure0.6.0-stable
parent
57fea65c82
commit
893d40639c
|
@ -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)
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue