aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
diff options
context:
space:
mode:
authorSignpostMarv2012-10-16 12:40:21 +0100
committerJustin Clark-Casey (justincc)2012-10-29 23:39:00 +0000
commitc5af16aef82e2bdf2f4d877a231180e00a8893a6 (patch)
tree3be95d8dea8bfcc764eb0cd374ecd88aed2a7ea6 /OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
parentmoving SendSound from SceneObjectPart to ISoundModule (diff)
downloadopensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.zip
opensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.tar.gz
opensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.tar.bz2
opensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.tar.xz
shuffling code around so that the interface for ISoundModule.SendSound() specifies a UUID rather than a string
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
index 9e438e2..5ed1514 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
@@ -824,7 +824,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
824 ISoundModule module = m_rootScene.RequestModuleInterface<ISoundModule>(); 824 ISoundModule module = m_rootScene.RequestModuleInterface<ISoundModule>();
825 if (module != null) 825 if (module != null)
826 { 826 {
827 module.SendSound(GetSOP().UUID, asset.ToString(), volume, true, 0, 0, false, false); 827 module.SendSound(GetSOP().UUID, asset, volume, true, 0, 0, false, false);
828 } 828 }
829 } 829 }
830 830