diff options
author | Justin Clark-Casey (justincc) | 2012-10-09 17:29:44 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-09 17:29:44 +0100 |
commit | 785671e24260e8280fa6cdec4bd7e4875cdca410 (patch) | |
tree | 68258a295e8f542b9d04e7745f9d02ec24536aa5 /OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |
parent | Disambiguate use of RegionFlags in NullRegionData (diff) | |
parent | av_av_collisions_off = false OdePhysics Settings in OpenSimDefaults.ini - No... (diff) | |
download | opensim-SC_OLD-785671e24260e8280fa6cdec4bd7e4875cdca410.zip opensim-SC_OLD-785671e24260e8280fa6cdec4bd7e4875cdca410.tar.gz opensim-SC_OLD-785671e24260e8280fa6cdec4bd7e4875cdca410.tar.bz2 opensim-SC_OLD-785671e24260e8280fa6cdec4bd7e4875cdca410.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODECharacter.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs index f3b0630..c736557 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |||
@@ -100,7 +100,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
100 | private bool m_hackSentFly = false; | 100 | private bool m_hackSentFly = false; |
101 | private int m_requestedUpdateFrequency = 0; | 101 | private int m_requestedUpdateFrequency = 0; |
102 | private Vector3 m_taintPosition; | 102 | private Vector3 m_taintPosition; |
103 | 103 | internal bool m_avatarplanted = false; | |
104 | /// <summary> | 104 | /// <summary> |
105 | /// Hold set forces so we can process them outside physics calculations. This prevents race conditions if we set force | 105 | /// Hold set forces so we can process them outside physics calculations. This prevents race conditions if we set force |
106 | /// while calculatios are going on | 106 | /// while calculatios are going on |
@@ -413,7 +413,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
413 | set | 413 | set |
414 | { | 414 | { |
415 | m_iscollidingObj = value; | 415 | m_iscollidingObj = value; |
416 | if (value) | 416 | if (value && !m_avatarplanted) |
417 | m_pidControllerActive = false; | 417 | m_pidControllerActive = false; |
418 | else | 418 | else |
419 | m_pidControllerActive = true; | 419 | m_pidControllerActive = true; |