aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
diff options
context:
space:
mode:
authorUbitUmarov2012-05-19 01:01:46 +0100
committerUbitUmarov2012-05-19 01:01:46 +0100
commitdeb87e78907fae00301c9c3428da2f41e1f588b3 (patch)
treefde2b44dfcc89d3f495aebe42b3c8a837d96ea9c /OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
parentadd colliders relative velocity projected in collision direction to collision... (diff)
downloadopensim-SC_OLD-deb87e78907fae00301c9c3428da2f41e1f588b3.zip
opensim-SC_OLD-deb87e78907fae00301c9c3428da2f41e1f588b3.tar.gz
opensim-SC_OLD-deb87e78907fae00301c9c3428da2f41e1f588b3.tar.bz2
opensim-SC_OLD-deb87e78907fae00301c9c3428da2f41e1f588b3.tar.xz
fix character IsPhysical
Diffstat (limited to 'OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs')
-rw-r--r--OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
index bfff3d4..b36b933 100644
--- a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs
@@ -239,7 +239,7 @@ namespace OpenSim.Region.Physics.OdePlugin
239 239
240 public override bool IsPhysical 240 public override bool IsPhysical
241 { 241 {
242 get { return false; } 242 get { return m_isPhysical; }
243 set { return; } 243 set { return; }
244 } 244 }
245 245