aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-07-09 23:24:12 +0100
committerJustin Clark-Casey2014-08-02 00:53:14 +0100
commit743b1efdb4a72679d2145f1cc4752cebd54e6a55 (patch)
treea8a931150585da0fd33cd1892e71326d2d54774a /OpenSim/Region/Application
parentTurn RestClient.Request() logging down the debug and comment out for now. (diff)
downloadopensim-SC_OLD-743b1efdb4a72679d2145f1cc4752cebd54e6a55.zip
opensim-SC_OLD-743b1efdb4a72679d2145f1cc4752cebd54e6a55.tar.gz
opensim-SC_OLD-743b1efdb4a72679d2145f1cc4752cebd54e6a55.tar.bz2
opensim-SC_OLD-743b1efdb4a72679d2145f1cc4752cebd54e6a55.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')
-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 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);