aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 579ec90..9e19a26 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -91,6 +91,8 @@ namespace OpenSim.Region.Environment.Scenes
91 91
92 private IHttpRequests m_httpRequestModule = null; 92 private IHttpRequests m_httpRequestModule = null;
93 private ISimChat m_simChatModule = null; 93 private ISimChat m_simChatModule = null;
94 private IXMLRPC m_xmlrpcModule = null;
95 private IWorldComm m_worldCommModule = null;
94 96
95 97
96 // Central Update Loop 98 // Central Update Loop
@@ -210,6 +212,8 @@ namespace OpenSim.Region.Environment.Scenes
210 { 212 {
211 m_simChatModule = RequestModuleInterface<ISimChat>(); 213 m_simChatModule = RequestModuleInterface<ISimChat>();
212 m_httpRequestModule = RequestModuleInterface<IHttpRequests>(); 214 m_httpRequestModule = RequestModuleInterface<IHttpRequests>();
215 m_xmlrpcModule = RequestModuleInterface<IXMLRPC>();
216 m_worldCommModule = RequestModuleInterface<IWorldComm>();
213 217
214 XferManager = RequestModuleInterface<IXfer>(); 218 XferManager = RequestModuleInterface<IXfer>();
215 } 219 }