diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
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) |