aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
authorKevin Cozens2017-09-04 13:28:31 -0400
committerKevin Cozens2017-09-04 13:28:31 -0400
commit05db0c977f816b199bdcd8b91f6ce9baf4befe94 (patch)
treef96d1124442f4de68598a5cba07ca29236219297 /OpenSim/Region/ScriptEngine
parentfix cache.cs (used on parcels info) (diff)
downloadopensim-SC_OLD-05db0c977f816b199bdcd8b91f6ce9baf4befe94.zip
opensim-SC_OLD-05db0c977f816b199bdcd8b91f6ce9baf4befe94.tar.gz
opensim-SC_OLD-05db0c977f816b199bdcd8b91f6ce9baf4befe94.tar.bz2
opensim-SC_OLD-05db0c977f816b199bdcd8b91f6ce9baf4befe94.tar.xz
Fixed typo in function name HaveNotifiedLogOfScriptStopMistmatch.
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rwxr-xr-xOpenSim/Region/ScriptEngine/XEngine/XEngine.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
index 870957b..65ce61d 100755
--- a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
+++ b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs
@@ -78,7 +78,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine
78 /// A parameter to allow us to notify the log if at least one script has a compilation that is not compatible 78 /// A parameter to allow us to notify the log if at least one script has a compilation that is not compatible
79 /// with ScriptStopStrategy. 79 /// with ScriptStopStrategy.
80 /// </summary> 80 /// </summary>
81 public bool HaveNotifiedLogOfScriptStopMistmatch { get; private set; } 81 public bool HaveNotifiedLogOfScriptStopMismatch { get; private set; }
82 82
83 private SmartThreadPool m_ThreadPool; 83 private SmartThreadPool m_ThreadPool;
84 private int m_MaxScriptQueue; 84 private int m_MaxScriptQueue;
@@ -1480,7 +1480,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine
1480 } 1480 }
1481 } 1481 }
1482 1482
1483 if (m_coopTermination != coopTerminationForThisScript && !HaveNotifiedLogOfScriptStopMistmatch) 1483 if (m_coopTermination != coopTerminationForThisScript && !HaveNotifiedLogOfScriptStopMismatch)
1484 { 1484 {
1485 // Notify the log that there is at least one script compile that doesn't match the 1485 // Notify the log that there is at least one script compile that doesn't match the
1486 // ScriptStopStrategy. Operator has to manually delete old DLLs - we can't do this on Windows 1486 // ScriptStopStrategy. Operator has to manually delete old DLLs - we can't do this on Windows
@@ -1490,7 +1490,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine
1490 + "\nContinuing with script compiled strategy but to remove this message please set [XEngine] DeleteScriptsOnStartup = true for one simulator session to remove old script DLLs (script state will not be lost).", 1490 + "\nContinuing with script compiled strategy but to remove this message please set [XEngine] DeleteScriptsOnStartup = true for one simulator session to remove old script DLLs (script state will not be lost).",
1491 World.Name, coopTerminationForThisScript ? "co-op" : "abort", m_coopTermination ? "co-op" : "abort"); 1491 World.Name, coopTerminationForThisScript ? "co-op" : "abort", m_coopTermination ? "co-op" : "abort");
1492 1492
1493 HaveNotifiedLogOfScriptStopMistmatch = true; 1493 HaveNotifiedLogOfScriptStopMismatch = true;
1494 } 1494 }
1495 1495
1496 instance = new ScriptInstance(this, part, 1496 instance = new ScriptInstance(this, part,