diff options
author | Kevin Cozens | 2017-09-04 13:28:31 -0400 |
---|---|---|
committer | Kevin Cozens | 2017-09-04 13:28:31 -0400 |
commit | 05db0c977f816b199bdcd8b91f6ce9baf4befe94 (patch) | |
tree | f96d1124442f4de68598a5cba07ca29236219297 | |
parent | fix cache.cs (used on parcels info) (diff) | |
download | opensim-SC-05db0c977f816b199bdcd8b91f6ce9baf4befe94.zip opensim-SC-05db0c977f816b199bdcd8b91f6ce9baf4befe94.tar.gz opensim-SC-05db0c977f816b199bdcd8b91f6ce9baf4befe94.tar.bz2 opensim-SC-05db0c977f816b199bdcd8b91f6ce9baf4befe94.tar.xz |
Fixed typo in function name HaveNotifiedLogOfScriptStopMistmatch.
-rwxr-xr-x | OpenSim/Region/ScriptEngine/XEngine/XEngine.cs | 6 |
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, |