diff options
author | Sean Dague | 2007-10-19 20:27:34 +0000 |
---|---|---|
committer | Sean Dague | 2007-10-19 20:27:34 +0000 |
commit | 139994757c7dab04dd03801266525e8c53395a5e (patch) | |
tree | 003ec2557de6dd80dbe1e7bc78efe8958d02d5ae /OpenSim/Region/Environment/Modules/XMLRPCModule.cs | |
parent | * Test thy commits! (oops, sorry!) (diff) | |
download | opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.zip opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.tar.gz opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.tar.bz2 opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.tar.xz |
changes to pass nini config object to the modules that get
loaded so that they may read out any bits they are interested in
Diffstat (limited to 'OpenSim/Region/Environment/Modules/XMLRPCModule.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/XMLRPCModule.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/XMLRPCModule.cs b/OpenSim/Region/Environment/Modules/XMLRPCModule.cs index 941d3c1..3a5b3c6 100644 --- a/OpenSim/Region/Environment/Modules/XMLRPCModule.cs +++ b/OpenSim/Region/Environment/Modules/XMLRPCModule.cs | |||
@@ -39,6 +39,7 @@ using OpenSim.Framework.Servers; | |||
39 | using Nwc.XmlRpc; | 39 | using Nwc.XmlRpc; |
40 | using System.Collections; | 40 | using System.Collections; |
41 | using System.Collections.Generic; | 41 | using System.Collections.Generic; |
42 | using Nini.Config; | ||
42 | 43 | ||
43 | /***************************************************** | 44 | /***************************************************** |
44 | * | 45 | * |
@@ -93,7 +94,7 @@ namespace OpenSim.Region.Environment.Modules | |||
93 | { | 94 | { |
94 | } | 95 | } |
95 | 96 | ||
96 | public void Initialise(Scene scene) | 97 | public void Initialise(Scene scene, IConfigSource config) |
97 | { | 98 | { |
98 | m_scene = scene; | 99 | m_scene = scene; |
99 | 100 | ||