aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes
diff options
context:
space:
mode:
authorUbitUmarov2017-05-19 19:51:23 +0100
committerUbitUmarov2017-05-19 19:51:23 +0100
commit9397b358d36067824b2cd4328398bbce9aecaa63 (patch)
tree799ca6c59e8605ec36167fec989d1287ccf9bc46 /OpenSim/Region/Framework/Scenes
parentfix a null ref on parcels join (diff)
downloadopensim-SC_OLD-9397b358d36067824b2cd4328398bbce9aecaa63.zip
opensim-SC_OLD-9397b358d36067824b2cd4328398bbce9aecaa63.tar.gz
opensim-SC_OLD-9397b358d36067824b2cd4328398bbce9aecaa63.tar.bz2
opensim-SC_OLD-9397b358d36067824b2cd4328398bbce9aecaa63.tar.xz
mantis 8170: let physics know Always_run on adding the avatar
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 805c9ad..2731274 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -4880,6 +4880,7 @@ namespace OpenSim.Region.Framework.Scenes
4880 PhysicsActor.OnOutOfBounds += OutOfBoundsCall; // Called for PhysicsActors when there's something wrong 4880 PhysicsActor.OnOutOfBounds += OutOfBoundsCall; // Called for PhysicsActors when there's something wrong
4881 PhysicsActor.SubscribeEvents(100); 4881 PhysicsActor.SubscribeEvents(100);
4882 PhysicsActor.LocalID = LocalId; 4882 PhysicsActor.LocalID = LocalId;
4883 PhysicsActor.SetAlwaysRun = m_setAlwaysRun;
4883 } 4884 }
4884 4885
4885 private void OutOfBoundsCall(Vector3 pos) 4886 private void OutOfBoundsCall(Vector3 pos)