bugfix for shutdown
parent
52af9b3fd7
commit
4ce0e6d822
|
@ -68,10 +68,17 @@ namespace OpenSim.ApplicationPlugins.ScriptEngine
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Close()
|
public void Close()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (scriptEngine != null)
|
if (scriptEngine != null)
|
||||||
scriptEngine.Close();
|
scriptEngine.Close();
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
scriptEngine.m_log.Error("[ScriptEngine]: Unable to close engine \"" + tempScriptEngineName + "\": " + ex.ToString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public string Name
|
public string Name
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue