aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-14 23:25:07 +0000
committerTeravus Ovares2008-05-14 23:25:07 +0000
commita4efa939932f823af2affe0e97446a8d807004e0 (patch)
tree58f8b1341aa2a14178bf707841cd368d5394429f /OpenSim/Region/Environment/Scenes/Scene.cs
parent* Refactored IConfigSource into Physics plug-ins and Scene. We can get rid of... (diff)
downloadopensim-SC_OLD-a4efa939932f823af2affe0e97446a8d807004e0.zip
opensim-SC_OLD-a4efa939932f823af2affe0e97446a8d807004e0.tar.gz
opensim-SC_OLD-a4efa939932f823af2affe0e97446a8d807004e0.tar.bz2
opensim-SC_OLD-a4efa939932f823af2affe0e97446a8d807004e0.tar.xz
* Comitting 0001271: [PATCH] Refactor permissions to fully allow stacking permissions modules. From Melanie. Thanks Melanie!
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 5b93ef9..51f2942 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -115,7 +115,6 @@ namespace OpenSim.Region.Environment.Scenes
115 protected IXMLRPC m_xmlrpcModule; 115 protected IXMLRPC m_xmlrpcModule;
116 protected IWorldComm m_worldCommModule; 116 protected IWorldComm m_worldCommModule;
117 protected IAvatarFactory m_AvatarFactory; 117 protected IAvatarFactory m_AvatarFactory;
118 protected IScenePermissions m_permissions;
119 protected IConfigSource m_config; 118 protected IConfigSource m_config;
120 119
121 // Central Update Loop 120 // Central Update Loop
@@ -173,14 +172,6 @@ namespace OpenSim.Region.Environment.Scenes
173 get { return m_timedilation; } 172 get { return m_timedilation; }
174 } 173 }
175 174
176 /// <summary>
177 /// The reference by which general permissions in the scene can be set and queried.
178 /// </summary>
179 public IScenePermissions Permissions
180 {
181 get { return m_permissions; }
182 }
183
184 public int TimePhase 175 public int TimePhase
185 { 176 {
186 get { return m_timePhase; } 177 get { return m_timePhase; }
@@ -660,7 +651,6 @@ namespace OpenSim.Region.Environment.Scenes
660 m_worldCommModule = RequestModuleInterface<IWorldComm>(); 651 m_worldCommModule = RequestModuleInterface<IWorldComm>();
661 XferManager = RequestModuleInterface<IXfer>(); 652 XferManager = RequestModuleInterface<IXfer>();
662 m_AvatarFactory = RequestModuleInterface<IAvatarFactory>(); 653 m_AvatarFactory = RequestModuleInterface<IAvatarFactory>();
663 m_permissions = RequestModuleInterface<IScenePermissions>();
664 } 654 }
665 655
666 #endregion 656 #endregion