aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneBase.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-05-28 23:14:24 +0100
committerJustin Clark-Casey (justincc)2010-05-28 23:14:24 +0100
commit191db0e6a4327e8bf84350a541a9edc579ae1c54 (patch)
treee9d0c0354ccfabcb3ded539cb62a43bb2e503d3b /OpenSim/Region/Framework/Scenes/SceneBase.cs
parentrestore InventoryArchiverTests.TestReplicateArchivePathToUserInventory() to w... (diff)
downloadopensim-SC_OLD-191db0e6a4327e8bf84350a541a9edc579ae1c54.zip
opensim-SC_OLD-191db0e6a4327e8bf84350a541a9edc579ae1c54.tar.gz
opensim-SC_OLD-191db0e6a4327e8bf84350a541a9edc579ae1c54.tar.bz2
opensim-SC_OLD-191db0e6a4327e8bf84350a541a9edc579ae1c54.tar.xz
get TestSaveIarV0_1() uncommented but not running as a test yet since I didn't get the authentication server to work and my brain is about to fizzle out my ears
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneBase.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneBase.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs
index c363a91..ee17fbf 100644
--- a/OpenSim/Region/Framework/Scenes/SceneBase.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs
@@ -376,6 +376,8 @@ namespace OpenSim.Region.Framework.Scenes
376 /// <param name="mod"></param> 376 /// <param name="mod"></param>
377 public void RegisterModuleInterface<M>(M mod) 377 public void RegisterModuleInterface<M>(M mod)
378 { 378 {
379 m_log.DebugFormat("[SCENE BASE]: Registering interface {0}", typeof(M));
380
379 List<Object> l = null; 381 List<Object> l = null;
380 if (!ModuleInterfaces.TryGetValue(typeof(M), out l)) 382 if (!ModuleInterfaces.TryGetValue(typeof(M), out l))
381 { 383 {