mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 22:05:36 +08:00
Fix a dumb little sign error that makes a LSL wiki example fail
This commit is contained in:
committed by
Melanie
parent
54d7f6ef43
commit
848623eea5
@@ -663,13 +663,13 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||
Object[] ret;
|
||||
|
||||
if (start < 0)
|
||||
start=m_data.Length-start;
|
||||
start=m_data.Length+start;
|
||||
|
||||
if (start < 0)
|
||||
start=0;
|
||||
|
||||
if (end < 0)
|
||||
end=m_data.Length-end;
|
||||
end=m_data.Length+end;
|
||||
if (end < 0)
|
||||
end=0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user