diff options
author | Charles Krinke | 2009-01-28 04:50:25 +0000 |
---|---|---|
committer | Charles Krinke | 2009-01-28 04:50:25 +0000 |
commit | fe18adbc1179318cb230b9ac01db0e26e40ec93d (patch) | |
tree | 9f8ee7acbadcae962e317e55f04a932215330e81 /OpenSim/Region/ScriptEngine/Shared/Api/Implementation | |
parent | Removing ThirdParty/3Di from prebuild.xml. (diff) | |
download | opensim-SC-fe18adbc1179318cb230b9ac01db0e26e40ec93d.zip opensim-SC-fe18adbc1179318cb230b9ac01db0e26e40ec93d.tar.gz opensim-SC-fe18adbc1179318cb230b9ac01db0e26e40ec93d.tar.bz2 opensim-SC-fe18adbc1179318cb230b9ac01db0e26e40ec93d.tar.xz |
Add in a stub for llSHA1String. I believe it is the only one new
function we were missing.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index df3a3dc..10a3133 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5887,6 +5887,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5887 | return Util.Md5Hash(src + ":" + nonce.ToString()); | 5887 | return Util.Md5Hash(src + ":" + nonce.ToString()); |
5888 | } | 5888 | } |
5889 | 5889 | ||
5890 | public LSL_String llSHA1String(string src) | ||
5891 | { | ||
5892 | m_host.AddScriptLPS(1); | ||
5893 | return ""; //ckrinke 1/27 This needs to return a proper hash. | ||
5894 | } | ||
5890 | private ObjectShapePacket.ObjectDataBlock SetPrimitiveBlockShapeParams(SceneObjectPart part, int holeshape, LSL_Vector cut, float hollow, LSL_Vector twist) | 5895 | private ObjectShapePacket.ObjectDataBlock SetPrimitiveBlockShapeParams(SceneObjectPart part, int holeshape, LSL_Vector cut, float hollow, LSL_Vector twist) |
5891 | { | 5896 | { |
5892 | ObjectShapePacket.ObjectDataBlock shapeBlock = new ObjectShapePacket.ObjectDataBlock(); | 5897 | ObjectShapePacket.ObjectDataBlock shapeBlock = new ObjectShapePacket.ObjectDataBlock(); |