diff options
author | Justin Clark-Casey (justincc) | 2013-11-19 23:53:15 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-11-19 23:53:15 +0000 |
commit | b44c69807d1c804f2ae1e9c77a0f4d2dbff1b6e1 (patch) | |
tree | 9b4f550a49f1261768a4253a4101705a2016f84f /OpenSim/Region/Application/OpenSim.cs | |
parent | rename private field ACD.ViewerInternal to m_viewerInternal in line with conv... (diff) | |
download | opensim-SC_OLD-b44c69807d1c804f2ae1e9c77a0f4d2dbff1b6e1.zip opensim-SC_OLD-b44c69807d1c804f2ae1e9c77a0f4d2dbff1b6e1.tar.gz opensim-SC_OLD-b44c69807d1c804f2ae1e9c77a0f4d2dbff1b6e1.tar.bz2 opensim-SC_OLD-b44c69807d1c804f2ae1e9c77a0f4d2dbff1b6e1.tar.xz |
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
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 12250df..e31c3fc 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -766,7 +766,7 @@ namespace OpenSim | |||
766 | foreach (IRegionModuleBase module in sharedModules.OrderBy(m => m.Name)) | 766 | foreach (IRegionModuleBase module in sharedModules.OrderBy(m => m.Name)) |
767 | MainConsole.Instance.OutputFormat("New Region Module (Shared): {0}", module.Name); | 767 | MainConsole.Instance.OutputFormat("New Region Module (Shared): {0}", module.Name); |
768 | 768 | ||
769 | foreach (IRegionModuleBase module in sharedModules.OrderBy(m => m.Name)) | 769 | foreach (IRegionModuleBase module in nonSharedModules.OrderBy(m => m.Name)) |
770 | MainConsole.Instance.OutputFormat("New Region Module (Non-Shared): {0}", module.Name); | 770 | MainConsole.Instance.OutputFormat("New Region Module (Non-Shared): {0}", module.Name); |
771 | } | 771 | } |
772 | ); | 772 | ); |