Removed some ScriptEngine config debugging.

Added experimental console command to:
* unload module (note: module probably doesn't support it)
* load module
Not visible in help (needs testing first).
This commit is contained in:
Tedd Hansen
2008-02-10 19:03:38 +00:00
parent b4a19a4fb4
commit 0756e01475
3 changed files with 36 additions and 0 deletions

View File

@@ -294,5 +294,12 @@ namespace OpenSim.Region.Environment
{
LoadedAssemblys.Clear();
}
public void UnloadModule(IRegionModule rm)
{
rm.Close();
m_loadedModules.Remove(rm);
}
}
}