diff options
author | Justin Clark-Casey (justincc) | 2014-07-09 23:24:12 +0100 |
---|---|---|
committer | Justin Clark-Casey | 2014-08-02 00:53:14 +0100 |
commit | 743b1efdb4a72679d2145f1cc4752cebd54e6a55 (patch) | |
tree | a8a931150585da0fd33cd1892e71326d2d54774a | |
parent | Turn RestClient.Request() logging down the debug and comment out for now. (diff) | |
download | opensim-SC-743b1efdb4a72679d2145f1cc4752cebd54e6a55.zip opensim-SC-743b1efdb4a72679d2145f1cc4752cebd54e6a55.tar.gz opensim-SC-743b1efdb4a72679d2145f1cc4752cebd54e6a55.tar.bz2 opensim-SC-743b1efdb4a72679d2145f1cc4752cebd54e6a55.tar.xz |
Fix bug in "show modules" comamnd that was showing shared modules as non-shared and non-shared as shared
-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 1fe5731..9c63145 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); |