aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-09 22:45:40 +0000
committerJustin Clarke Casey2008-05-09 22:45:40 +0000
commit893d40639ceb9e141693ef25b10487b402a7feeb (patch)
treecee944514cbeb2563d438e21f2d51676f3701801 /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
parent* Revert caps fetch inventory service back to UDP for now (diff)
downloadopensim-SC_OLD-893d40639ceb9e141693ef25b10487b402a7feeb.zip
opensim-SC_OLD-893d40639ceb9e141693ef25b10487b402a7feeb.tar.gz
opensim-SC_OLD-893d40639ceb9e141693ef25b10487b402a7feeb.tar.bz2
opensim-SC_OLD-893d40639ceb9e141693ef25b10487b402a7feeb.tar.xz
* 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
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 aadad7b..afc3ff2 100644
--- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
@@ -1353,9 +1353,9 @@ namespace OpenSim.Region.ScriptEngine.Common
1353 m_LSL_Functions.llGroundRepel(height, water, tau); 1353 m_LSL_Functions.llGroundRepel(height, water, tau);
1354 } 1354 }
1355 1355
1356 public void llGiveInventoryList() 1356 public void llGiveInventoryList(string destination, string category, LSL_Types.list inventory)
1357 { 1357 {
1358 m_LSL_Functions.llGiveInventoryList(); 1358 m_LSL_Functions.llGiveInventoryList(destination, category, inventory);
1359 } 1359 }
1360 1360
1361 public void llSetVehicleType(int type) 1361 public void llSetVehicleType(int type)