diff options
author | Justin Clark-Casey (justincc) | 2012-12-13 01:03:35 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-12-13 01:03:35 +0000 |
commit | 6fca93f0b1343bad8582d10634a4ae4dc161e401 (patch) | |
tree | 4b92a46e43f171901052af96a3d4965a5347503b /OpenSim/Region | |
parent | Log situations where workitem event threads are aborted on stop request becau... (diff) | |
download | opensim-SC_OLD-6fca93f0b1343bad8582d10634a4ae4dc161e401.zip opensim-SC_OLD-6fca93f0b1343bad8582d10634a4ae4dc161e401.tar.gz opensim-SC_OLD-6fca93f0b1343bad8582d10634a4ae4dc161e401.tar.bz2 opensim-SC_OLD-6fca93f0b1343bad8582d10634a4ae4dc161e401.tar.xz |
Fix sounds so that they play from inventory after teleport rather than only on initial login region.
Regression from commit ed162a10 (Fri Oct 5 13:50:12 2012)
We had started listening for the client login event for attaching the sound trigger event rather than OnNewClient
Addresses http://opensimulator.org/mantis/view.php?id=6453
Many thanks to danbanner for identifying the exact commit where this went wrong, which made identifying the fix easy.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Sound/SoundModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs b/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs index 089fcda..883045a 100644 --- a/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs +++ b/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs | |||
@@ -76,7 +76,7 @@ namespace OpenSim.Region.CoreModules.World.Sound | |||
76 | 76 | ||
77 | public void RemoveRegion(Scene scene) | 77 | public void RemoveRegion(Scene scene) |
78 | { | 78 | { |
79 | m_scene.EventManager.OnClientLogin -= OnNewClient; | 79 | m_scene.EventManager.OnNewClient -= OnNewClient; |
80 | } | 80 | } |
81 | 81 | ||
82 | public void RegionLoaded(Scene scene) | 82 | public void RegionLoaded(Scene scene) |
@@ -85,7 +85,7 @@ namespace OpenSim.Region.CoreModules.World.Sound | |||
85 | return; | 85 | return; |
86 | 86 | ||
87 | m_scene = scene; | 87 | m_scene = scene; |
88 | m_scene.EventManager.OnClientLogin += OnNewClient; | 88 | m_scene.EventManager.OnNewClient += OnNewClient; |
89 | 89 | ||
90 | m_scene.RegisterModuleInterface<ISoundModule>(this); | 90 | m_scene.RegisterModuleInterface<ISoundModule>(this); |
91 | } | 91 | } |