diff options
author | Melanie | 2012-07-01 18:05:35 +0200 |
---|---|---|
committer | Melanie | 2012-07-01 18:05:35 +0200 |
commit | 7eb95c9ed90939fc243995eaaefed90bf45c37ed (patch) | |
tree | f4b7ca4f29627b24e5ccc3176f8f3b26419381a3 /OpenSim | |
parent | Remove spammy debug (diff) | |
download | opensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.zip opensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.tar.gz opensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.tar.bz2 opensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.tar.xz |
Bring casing of llSHA1String in line with SL
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 8c51473..dd7563a 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7479,7 +7479,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7479 | public LSL_String llSHA1String(string src) | 7479 | public LSL_String llSHA1String(string src) |
7480 | { | 7480 | { |
7481 | m_host.AddScriptLPS(1); | 7481 | m_host.AddScriptLPS(1); |
7482 | return Util.SHA1Hash(src, Encoding.UTF8).ToLower(); | 7482 | return Util.SHA1Hash(src, Encoding.UTF8).ToUpper(); |
7483 | } | 7483 | } |
7484 | 7484 | ||
7485 | protected ObjectShapePacket.ObjectDataBlock SetPrimitiveBlockShapeParams(SceneObjectPart part, int holeshape, LSL_Vector cut, float hollow, LSL_Vector twist, byte profileshape, byte pathcurve) | 7485 | protected ObjectShapePacket.ObjectDataBlock SetPrimitiveBlockShapeParams(SceneObjectPart part, int holeshape, LSL_Vector cut, float hollow, LSL_Vector twist, byte profileshape, byte pathcurve) |