Fix bug in "show modules" comamnd that was showing shared modules as non-shared and non-shared as shared
parent
a8860d79d8
commit
fea18a909f
|
@ -921,7 +921,7 @@ namespace OpenSim
|
|||
|
||||
foreach (IRegionModuleBase module in scene.RegionModules.Values)
|
||||
{
|
||||
if (module.GetType().GetInterface("ISharedRegionModule") != null)
|
||||
if (module.GetType().GetInterface("ISharedRegionModule") == null)
|
||||
nonSharedModules.Add(module);
|
||||
else
|
||||
sharedModules.Add(module);
|
||||
|
|
Loading…
Reference in New Issue