diff options
author | Justin Clark-Casey (justincc) | 2014-07-09 23:24:12 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-07-09 23:24:12 +0100 |
commit | fea18a909f31be23074874573a67c5f9fd4926cb (patch) | |
tree | bcc65beca91ddb7d35d8fe1bfcaa3c1768f8fb28 /OpenSim/Region/Application/OpenSim.cs | |
parent | Turn RestClient.Request() logging down the debug and comment out for now. (diff) | |
download | opensim-SC-fea18a909f31be23074874573a67c5f9fd4926cb.zip opensim-SC-fea18a909f31be23074874573a67c5f9fd4926cb.tar.gz opensim-SC-fea18a909f31be23074874573a67c5f9fd4926cb.tar.bz2 opensim-SC-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 '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 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); |