diff options
author | UbitUmarov | 2012-05-19 01:01:46 +0100 |
---|---|---|
committer | UbitUmarov | 2012-05-19 01:01:46 +0100 |
commit | deb87e78907fae00301c9c3428da2f41e1f588b3 (patch) | |
tree | fde2b44dfcc89d3f495aebe42b3c8a837d96ea9c | |
parent | add colliders relative velocity projected in collision direction to collision... (diff) | |
download | opensim-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
-rw-r--r-- | OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs | 2 |
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 | ||