aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
diff options
context:
space:
mode:
authorSean Dague2008-05-28 21:43:41 +0000
committerSean Dague2008-05-28 21:43:41 +0000
commitb0be8075cd318bdd4ff1265f4491e3f7bcce9e2e (patch)
treef143e40f551a9ac776b8f85b9b20c9c63f41d82f /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
parentupdate the nhibernate inventory item base definition (diff)
downloadopensim-SC_OLD-b0be8075cd318bdd4ff1265f4491e3f7bcce9e2e.zip
opensim-SC_OLD-b0be8075cd318bdd4ff1265f4491e3f7bcce9e2e.tar.gz
opensim-SC_OLD-b0be8075cd318bdd4ff1265f4491e3f7bcce9e2e.tar.bz2
opensim-SC_OLD-b0be8075cd318bdd4ff1265f4491e3f7bcce9e2e.tar.xz
From: Kurt Taylor <krtaylor@us.ibm.com>
Attached is an initial implementation of llGetNotecardLine and llGetNumberOfNotecardLines. I decided to go ahead an send these out for comment while I continue to work on the second part of the proper implementation. These functions work and return the values requested, as initially defined in the code, but should be properly implemented to return the requested information via a dataserver event. This event will be added and these functions fixed and included in a second patch shortly.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
index b7b040d..7b9b496 100644
--- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
@@ -1595,7 +1595,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1595 return m_LSL_Functions.llGetNumberOfPrims(); 1595 return m_LSL_Functions.llGetNumberOfPrims();
1596 } 1596 }
1597 1597
1598 public string llGetNumberOfNotecardLines(string name) 1598 public int llGetNumberOfNotecardLines(string name)
1599 { 1599 {
1600 return m_LSL_Functions.llGetNumberOfNotecardLines(name); 1600 return m_LSL_Functions.llGetNumberOfNotecardLines(name);
1601 } 1601 }