diff options
author | Justin Clarke Casey | 2008-11-27 15:14:27 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-27 15:14:27 +0000 |
commit | 5867f9c11ffc9b8ebfc3ad7d27ab3a8ee8a8ba09 (patch) | |
tree | d8db52e01c82ce12c7800ee2ebc29e97f15e3560 /OpenSim/Region/Environment | |
parent | * Opened the registration of http handlers up for subclassing (diff) | |
download | opensim-SC_OLD-5867f9c11ffc9b8ebfc3ad7d27ab3a8ee8a8ba09.zip opensim-SC_OLD-5867f9c11ffc9b8ebfc3ad7d27ab3a8ee8a8ba09.tar.gz opensim-SC_OLD-5867f9c11ffc9b8ebfc3ad7d27ab3a8ee8a8ba09.tar.bz2 opensim-SC_OLD-5867f9c11ffc9b8ebfc3ad7d27ab3a8ee8a8ba09.tar.xz |
* minor: remove the ability to change the client in ScenePresence to reduce the scope of possible bugs - currently unused in the core code
* if this is being used then please say and we can see if there is a better accomodation of this
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 998140f..610d442 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -356,10 +356,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
356 | 356 | ||
357 | protected PhysicsActor m_physicsActor; | 357 | protected PhysicsActor m_physicsActor; |
358 | 358 | ||
359 | /// <value> | ||
360 | /// The client controlling this presence | ||
361 | /// </value> | ||
359 | public IClientAPI ControllingClient | 362 | public IClientAPI ControllingClient |
360 | { | 363 | { |
361 | get { return m_controllingClient; } | 364 | get { return m_controllingClient; } |
362 | set { m_controllingClient = value; } | ||
363 | } | 365 | } |
364 | 366 | ||
365 | public IClientCore ClientView | 367 | public IClientCore ClientView |