aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
diff options
context:
space:
mode:
authorSignpostMarv2012-10-29 16:17:18 +0000
committerJustin Clark-Casey (justincc)2012-10-29 23:39:01 +0000
commita09cba6da363606f0e2d63118b63f5b05232c452 (patch)
tree0afdf9a94b2dd2d1683b1a4b41d75c2979204825 /OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
parentRenaming module back to SoundModule as the hypothetical plan was to make anot... (diff)
downloadopensim-SC_OLD-a09cba6da363606f0e2d63118b63f5b05232c452.zip
opensim-SC_OLD-a09cba6da363606f0e2d63118b63f5b05232c452.tar.gz
opensim-SC_OLD-a09cba6da363606f0e2d63118b63f5b05232c452.tar.bz2
opensim-SC_OLD-a09cba6da363606f0e2d63118b63f5b05232c452.tar.xz
refactoring to use assembly:classname style of configuration
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Sound/SoundModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Sound/SoundModule.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs b/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
index 1db6519..513a8f5 100644
--- a/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
+++ b/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
@@ -25,6 +25,7 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27using System; 27using System;
28using System.IO;
28using System.Collections.Generic; 29using System.Collections.Generic;
29using System.Reflection; 30using System.Reflection;
30 31
@@ -64,7 +65,9 @@ namespace OpenSim.Region.CoreModules.World.Sound
64 } 65 }
65 else 66 else
66 { 67 {
67 Enabled = config.GetString("Module", "SoundModule") == "SoundModule"; 68 Enabled = config.GetString("Module", "OpenSim.Region.CoreModules.dll:SoundModule") ==
69 Path.GetFileName(Assembly.GetExecutingAssembly().Location)
70 + ":" + MethodBase.GetCurrentMethod().DeclaringType.Name;
68 MaxDistance = config.GetFloat("MaxDistance", 100.0f); 71 MaxDistance = config.GetFloat("MaxDistance", 100.0f);
69 } 72 }
70 } 73 }