aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Avatar/Gestures
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-23 18:01:05 +0000
committerJustin Clarke Casey2008-12-23 18:01:05 +0000
commit2afdfc4d29ed0dbaf50d345d518411a54dc5dd00 (patch)
tree7d1f0842fbd5c42812b39af31e02fb684b49b2b9 /OpenSim/Region/Environment/Modules/Avatar/Gestures
parent* refactor: Replace part of SceneObjectPart with the identical sound playing ... (diff)
downloadopensim-SC_OLD-2afdfc4d29ed0dbaf50d345d518411a54dc5dd00.zip
opensim-SC_OLD-2afdfc4d29ed0dbaf50d345d518411a54dc5dd00.tar.gz
opensim-SC_OLD-2afdfc4d29ed0dbaf50d345d518411a54dc5dd00.tar.bz2
opensim-SC_OLD-2afdfc4d29ed0dbaf50d345d518411a54dc5dd00.tar.xz
* Remove IGesturesModules since it won't be very helpful without a client message anyway
Diffstat (limited to 'OpenSim/Region/Environment/Modules/Avatar/Gestures')
-rw-r--r--OpenSim/Region/Environment/Modules/Avatar/Gestures/GesturesModule.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Gestures/GesturesModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Gestures/GesturesModule.cs
index 62b7e35..5ff6202 100644
--- a/OpenSim/Region/Environment/Modules/Avatar/Gestures/GesturesModule.cs
+++ b/OpenSim/Region/Environment/Modules/Avatar/Gestures/GesturesModule.cs
@@ -37,7 +37,7 @@ using System.Reflection;
37 37
38namespace OpenSim.Region.Environment.Modules.Avatar.Gestures 38namespace OpenSim.Region.Environment.Modules.Avatar.Gestures
39{ 39{
40 public class GesturesModule : IRegionModule, IGesturesModule 40 public class GesturesModule : IRegionModule
41 { 41 {
42 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 42 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
43 43
@@ -48,8 +48,6 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Gestures
48 m_scene = scene; 48 m_scene = scene;
49 49
50 m_scene.EventManager.OnNewClient += OnNewClient; 50 m_scene.EventManager.OnNewClient += OnNewClient;
51
52 m_scene.RegisterModuleInterface<IGesturesModule>(this);
53 } 51 }
54 52
55 public void PostInitialise() {} 53 public void PostInitialise() {}