aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs20
-rw-r--r--OpenSim/Region/ScriptEngine/XEngine/XEngine.cs6
2 files changed, 9 insertions, 17 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 0c7f49b..5386a28 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -5571,25 +5571,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
5571 /// separated list. There is a space after 5571 /// separated list. There is a space after
5572 /// each comma. 5572 /// each comma.
5573 /// </summary> 5573 /// </summary>
5574
5575 public LSL_String llList2CSV(LSL_List src) 5574 public LSL_String llList2CSV(LSL_List src)
5576 { 5575 {
5577
5578 string ret = String.Empty;
5579 int x = 0;
5580
5581 m_host.AddScriptLPS(1); 5576 m_host.AddScriptLPS(1);
5582 5577
5583 if (src.Data.Length > 0) 5578 return string.Join(", ",
5584 { 5579 (new List<object>(src.Data)).ConvertAll<string>(o =>
5585 ret = src.Data[x++].ToString(); 5580 {
5586 for (; x < src.Data.Length; x++) 5581 return o.ToString();
5587 { 5582 }).ToArray());
5588 ret += ", "+src.Data[x].ToString();
5589 }
5590 }
5591
5592 return ret;
5593 } 5583 }
5594 5584
5595 /// <summary> 5585 /// <summary>
diff --git a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
index 2d17977..9f05666 100644
--- a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
+++ b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
@@ -994,6 +994,8 @@ namespace OpenSim.Region.ScriptEngine.XEngine
994 // This delay exists to stop mono problems where script compilation and startup would stop the sim 994 // This delay exists to stop mono problems where script compilation and startup would stop the sim
995 // working properly for the session. 995 // working properly for the session.
996 System.Threading.Thread.Sleep(m_StartDelay); 996 System.Threading.Thread.Sleep(m_StartDelay);
997
998 m_log.InfoFormat("[XEngine]: Performing initial script startup on {0}", m_Scene.Name);
997 } 999 }
998 1000
999 object[] o; 1001 object[] o;
@@ -1009,13 +1011,13 @@ namespace OpenSim.Region.ScriptEngine.XEngine
1009 if (m_InitialStartup) 1011 if (m_InitialStartup)
1010 if (scriptsStarted % 50 == 0) 1012 if (scriptsStarted % 50 == 0)
1011 m_log.InfoFormat( 1013 m_log.InfoFormat(
1012 "[XEngine]: Started {0} scripts in {1}", scriptsStarted, m_Scene.RegionInfo.RegionName); 1014 "[XEngine]: Started {0} scripts in {1}", scriptsStarted, m_Scene.Name);
1013 } 1015 }
1014 } 1016 }
1015 1017
1016 if (m_InitialStartup) 1018 if (m_InitialStartup)
1017 m_log.InfoFormat( 1019 m_log.InfoFormat(
1018 "[XEngine]: Completed starting {0} scripts on {1}", scriptsStarted, m_Scene.RegionInfo.RegionName); 1020 "[XEngine]: Completed starting {0} scripts on {1}", scriptsStarted, m_Scene.Name);
1019 1021
1020 // NOTE: Despite having a lockless queue, this lock is required 1022 // NOTE: Despite having a lockless queue, this lock is required
1021 // to make sure there is never no compile thread while there 1023 // to make sure there is never no compile thread while there