diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 27ef4c9..a539eff 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -2684,10 +2684,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2684 | /// <param name="flags"></param> | 2684 | /// <param name="flags"></param> |
2685 | public void SendSound(string sound, double volume, bool triggered, byte flags, float radius, bool useMaster, bool isMaster) | 2685 | public void SendSound(string sound, double volume, bool triggered, byte flags, float radius, bool useMaster, bool isMaster) |
2686 | { | 2686 | { |
2687 | if (volume > 1) | 2687 | volume = Util.Clip((float)volume, 0, 1); |
2688 | volume = 1; | ||
2689 | if (volume < 0) | ||
2690 | volume = 0; | ||
2691 | 2688 | ||
2692 | UUID ownerID = OwnerID; | 2689 | UUID ownerID = OwnerID; |
2693 | UUID objectID = ParentGroup.RootPart.UUID; | 2690 | UUID objectID = ParentGroup.RootPart.UUID; |