aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/CollisionSounds.cs
diff options
context:
space:
mode:
authorUbitUmarov2012-05-17 04:41:46 +0100
committerUbitUmarov2012-05-17 04:41:46 +0100
commite4231e95a976f8b3c02add39b94721eebb639674 (patch)
tree7f01cc8316dfd102397ffec0d779cd972d63511a /OpenSim/Region/Framework/Scenes/CollisionSounds.cs
parent add avatar colision sounds. Changed test sound UUID (diff)
downloadopensim-SC_OLD-e4231e95a976f8b3c02add39b94721eebb639674.zip
opensim-SC_OLD-e4231e95a976f8b3c02add39b94721eebb639674.tar.gz
opensim-SC_OLD-e4231e95a976f8b3c02add39b94721eebb639674.tar.bz2
opensim-SC_OLD-e4231e95a976f8b3c02add39b94721eebb639674.tar.xz
increase avatars collisions report to 10 per sec, Stopped sound on avatar to volumedetect collision
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/CollisionSounds.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/CollisionSounds.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/CollisionSounds.cs b/OpenSim/Region/Framework/Scenes/CollisionSounds.cs
index a22ee10..c46756c 100644
--- a/OpenSim/Region/Framework/Scenes/CollisionSounds.cs
+++ b/OpenSim/Region/Framework/Scenes/CollisionSounds.cs
@@ -167,7 +167,7 @@ namespace OpenSim.Region.Framework.Scenes
167 SceneObjectPart otherPart = part.ParentGroup.Scene.GetSceneObjectPart(Id); 167 SceneObjectPart otherPart = part.ParentGroup.Scene.GetSceneObjectPart(Id);
168 if (otherPart != null) 168 if (otherPart != null)
169 { 169 {
170 if (otherPart.CollisionSound == part.invalidCollisionSoundUUID) 170 if (otherPart.CollisionSound == part.invalidCollisionSoundUUID || otherPart.VolumeDetectActive)
171 continue; 171 continue;
172 if (otherPart.CollisionSound != UUID.Zero) 172 if (otherPart.CollisionSound != UUID.Zero)
173 otherPart.SendCollisionSound(otherPart.CollisionSound, otherPart.CollisionSoundVolume); 173 otherPart.SendCollisionSound(otherPart.CollisionSound, otherPart.CollisionSoundVolume);