diff options
author | Brian McBee | 2007-08-18 02:15:21 +0000 |
---|---|---|
committer | Brian McBee | 2007-08-18 02:15:21 +0000 |
commit | 8eb9952e5ff5c003a98168e7847f309e51f48645 (patch) | |
tree | 0ed4e9c95788df7b97428816b459beece0eb0726 /OpenSim | |
parent | * Applied dalien's terrain help patch (thanks!) (diff) | |
download | opensim-SC_OLD-8eb9952e5ff5c003a98168e7847f309e51f48645.zip opensim-SC_OLD-8eb9952e5ff5c003a98168e7847f309e51f48645.tar.gz opensim-SC_OLD-8eb9952e5ff5c003a98168e7847f309e51f48645.tar.bz2 opensim-SC_OLD-8eb9952e5ff5c003a98168e7847f309e51f48645.tar.xz |
lsl test cases, and llregioncorner (thanks Dalien!)
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs index 486332f..2417017 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs | |||
@@ -292,7 +292,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
292 | public List<string> llList2ListStrided(List<string> src, int start, int end, int stride) | 292 | public List<string> llList2ListStrided(List<string> src, int start, int end, int stride) |
293 | { return new List<string>(); } | 293 | { return new List<string>(); } |
294 | public Axiom.Math.Vector3 llGetRegionCorner() | 294 | public Axiom.Math.Vector3 llGetRegionCorner() |
295 | { return new Axiom.Math.Vector3(); } | 295 | { return new Axiom.Math.Vector3(World.RegionInfo.RegionLocX * 256, World.RegionInfo.RegionLocY * 256, 0); } |
296 | public List<string> llListInsertList(List<string> dest, List<string> src, int start) | 296 | public List<string> llListInsertList(List<string> dest, List<string> src, int start) |
297 | { return new List<string>(); } | 297 | { return new List<string>(); } |
298 | public int llListFindList(List<string> src, List<string> test) { return 0; } | 298 | public int llListFindList(List<string> src, List<string> test) { return 0; } |