Added undocumented "modules list" command, lists shared region modules.
parent
f6e9b9404f
commit
4d376ee630
|
@ -931,7 +931,21 @@ namespace OpenSim
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case "modules":
|
||||||
|
if (cmdparams.Length > 0)
|
||||||
|
{
|
||||||
|
switch (cmdparams[0].ToLower())
|
||||||
|
{
|
||||||
|
case "list":
|
||||||
|
foreach (IRegionModule irm in m_moduleLoader.GetLoadedSharedModules)
|
||||||
|
{
|
||||||
|
m_console.Notice("Shared region module: " + irm.Name);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
/*
|
/*
|
||||||
* Temporarily disabled but it would be good to have this - needs to be levered
|
* Temporarily disabled but it would be good to have this - needs to be levered
|
||||||
* in to BaseOpenSimServer (which requires a RunCmd method restrcuture probably)
|
* in to BaseOpenSimServer (which requires a RunCmd method restrcuture probably)
|
||||||
|
|
Loading…
Reference in New Issue