Fix bug where "show modules" would accidentally list all the shared modules again as "non-shared"

Addresses http://opensimulator.org/mantis/view.php?id=6860
link-sitting
Justin Clark-Casey (justincc) 2013-11-19 23:53:15 +00:00
parent f9984a9685
commit b44c69807d
1 changed files with 1 additions and 1 deletions

View File

@ -766,7 +766,7 @@ namespace OpenSim
foreach (IRegionModuleBase module in sharedModules.OrderBy(m => m.Name))
MainConsole.Instance.OutputFormat("New Region Module (Shared): {0}", module.Name);
foreach (IRegionModuleBase module in sharedModules.OrderBy(m => m.Name))
foreach (IRegionModuleBase module in nonSharedModules.OrderBy(m => m.Name))
MainConsole.Instance.OutputFormat("New Region Module (Non-Shared): {0}", module.Name);
}
);