aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorlbsa712007-10-10 18:24:13 +0000
committerlbsa712007-10-10 18:24:13 +0000
commita40e7100a232827cffb813bbbbe9374324ad3448 (patch)
tree7f16f392d653f155ca90d5477c842db9c881f3ed /OpenSim/Region/Environment/Scenes
parentAdded unit tests, based on nunit for the IInventoryData (diff)
downloadopensim-SC_OLD-a40e7100a232827cffb813bbbbe9374324ad3448.zip
opensim-SC_OLD-a40e7100a232827cffb813bbbbe9374324ad3448.tar.gz
opensim-SC_OLD-a40e7100a232827cffb813bbbbe9374324ad3448.tar.bz2
opensim-SC_OLD-a40e7100a232827cffb813bbbbe9374324ad3448.tar.xz
* Gave ModuleLoader some good lovin'
* Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-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;