Fix an exception in new ScriptEngine loader where a region would

throw on quit if there was no script engine loaded by the loader
0.6.0-stable
Melanie Thielker 2008-09-21 02:26:08 +00:00
parent ec494275a2
commit b597cbf39d
1 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,8 @@ namespace OpenSim.ApplicationPlugins.ScriptEngine
public void Close()
{
scriptEngine.Close();
if (scriptEngine != null)
scriptEngine.Close();
}
public string Name