Fix an exception in new ScriptEngine loader where a region would
throw on quit if there was no script engine loaded by the loader0.6.0-stable
parent
ec494275a2
commit
b597cbf39d
|
@ -69,7 +69,8 @@ namespace OpenSim.ApplicationPlugins.ScriptEngine
|
|||
|
||||
public void Close()
|
||||
{
|
||||
scriptEngine.Close();
|
||||
if (scriptEngine != null)
|
||||
scriptEngine.Close();
|
||||
}
|
||||
|
||||
public string Name
|
||||
|
|
Loading…
Reference in New Issue