aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSim.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-07-09 23:24:12 +0100
committerJustin Clark-Casey (justincc)2014-07-09 23:24:12 +0100
commitfea18a909f31be23074874573a67c5f9fd4926cb (patch)
treebcc65beca91ddb7d35d8fe1bfcaa3c1768f8fb28 /OpenSim/Region/Application/OpenSim.cs
parentTurn RestClient.Request() logging down the debug and comment out for now. (diff)
downloadopensim-SC_OLD-fea18a909f31be23074874573a67c5f9fd4926cb.zip
opensim-SC_OLD-fea18a909f31be23074874573a67c5f9fd4926cb.tar.gz
opensim-SC_OLD-fea18a909f31be23074874573a67c5f9fd4926cb.tar.bz2
opensim-SC_OLD-fea18a909f31be23074874573a67c5f9fd4926cb.tar.xz
Fix bug in "show modules" comamnd that was showing shared modules as non-shared and non-shared as shared
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 37c648c..3f3ee11 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -921,7 +921,7 @@ namespace OpenSim
921 921
922 foreach (IRegionModuleBase module in scene.RegionModules.Values) 922 foreach (IRegionModuleBase module in scene.RegionModules.Values)
923 { 923 {
924 if (module.GetType().GetInterface("ISharedRegionModule") != null) 924 if (module.GetType().GetInterface("ISharedRegionModule") == null)
925 nonSharedModules.Add(module); 925 nonSharedModules.Add(module);
926 else 926 else
927 sharedModules.Add(module); 927 sharedModules.Add(module);