aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
authorubit2012-09-01 03:12:10 +0200
committerubit2012-09-01 03:12:10 +0200
commitc93b2db9f2b4a8084777d909272a4cc4d748bd9c (patch)
tree7d249645c092cc871f03440645a40bbcc9ba8d4a /OpenSim/Region/ScriptEngine
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parent try to reduce potencial recursive locking (diff)
downloadopensim-SC-c93b2db9f2b4a8084777d909272a4cc4d748bd9c.zip
opensim-SC-c93b2db9f2b4a8084777d909272a4cc4d748bd9c.tar.gz
opensim-SC-c93b2db9f2b4a8084777d909272a4cc4d748bd9c.tar.bz2
opensim-SC-c93b2db9f2b4a8084777d909272a4cc4d748bd9c.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 207d062..d5e611c 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -5475,7 +5475,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
5475 // for completion and should LSL_Key ever be implemented 5475 // for completion and should LSL_Key ever be implemented
5476 // as it's own struct 5476 // as it's own struct
5477 else if (!(src.Data[index] is LSL_String || 5477 else if (!(src.Data[index] is LSL_String ||
5478 src.Data[index] is LSL_Key)) 5478 src.Data[index] is LSL_Key ||
5479 src.Data[index] is String))
5479 { 5480 {
5480 return ""; 5481 return "";
5481 } 5482 }
@@ -12818,7 +12819,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
12818 public void llCollisionSprite(string impact_sprite) 12819 public void llCollisionSprite(string impact_sprite)
12819 { 12820 {
12820 m_host.AddScriptLPS(1); 12821 m_host.AddScriptLPS(1);
12821 NotImplemented("llCollisionSprite"); 12822 // Viewer 2.0 broke this and it's likely LL has no intention
12823 // of fixing it. Therefore, letting this be a NOP seems appropriate.
12822 } 12824 }
12823 12825
12824 public void llGodLikeRezObject(string inventory, LSL_Vector pos) 12826 public void llGodLikeRezObject(string inventory, LSL_Vector pos)