aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 288cbee..384ec10 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1337,9 +1337,9 @@ namespace OpenSim.Region.Environment.Scenes
1337 MainLog.Instance.Error("The currently loaded modules in " + RegionInfo.RegionName + " are:"); 1337 MainLog.Instance.Error("The currently loaded modules in " + RegionInfo.RegionName + " are:");
1338 foreach (IRegionModule module in Modules.Values) 1338 foreach (IRegionModule module in Modules.Values)
1339 { 1339 {
1340 if (!module.IsSharedModule()) 1340 if (!module.IsSharedModule)
1341 { 1341 {
1342 MainLog.Instance.Error("Region Module: " + module.GetName()); 1342 MainLog.Instance.Error("Region Module: " + module.Name);
1343 } 1343 }
1344 } 1344 }
1345 break; 1345 break;