aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2014-08-04 21:55:58 +0100
committerUbitUmarov2014-08-04 21:55:58 +0100
commit507a29d5819fcbbac4eb22b0e45b11cf3afb5096 (patch)
treecf23db6210fad3022b1c07538579850055b54a5b
parentcheck... (diff)
downloadopensim-SC_OLD-507a29d5819fcbbac4eb22b0e45b11cf3afb5096.zip
opensim-SC_OLD-507a29d5819fcbbac4eb22b0e45b11cf3afb5096.tar.gz
opensim-SC_OLD-507a29d5819fcbbac4eb22b0e45b11cf3afb5096.tar.bz2
opensim-SC_OLD-507a29d5819fcbbac4eb22b0e45b11cf3afb5096.tar.xz
diference fix
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 596feb1..f41a828 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -3370,7 +3370,10 @@ namespace OpenSim.Region.Framework.Scenes
3370 public void SendTerseUpdateToAgentClient(ScenePresence p) 3370 public void SendTerseUpdateToAgentClient(ScenePresence p)
3371 { 3371 {
3372 IClientAPI remoteClient = p.ControllingClient; 3372 IClientAPI remoteClient = p.ControllingClient;
3373 3373
3374 if (!remoteClient.IsActive)
3375 return;
3376
3374 if (ParcelHideThisAvatar && p.currentParcelUUID != currentParcelUUID && p.GodLevel < 200) 3377 if (ParcelHideThisAvatar && p.currentParcelUUID != currentParcelUUID && p.GodLevel < 200)
3375 return; 3378 return;
3376 3379