mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
Fix bug in "show modules" comamnd that was showing shared modules as non-shared and non-shared as shared
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user