diff options
author | Mic Bowman | 2011-12-22 16:21:32 -0800 |
---|---|---|
committer | Mic Bowman | 2011-12-22 16:21:32 -0800 |
commit | f394cb2e8f1605809dbf3d5503b9ae00dc1f5180 (patch) | |
tree | 46791e552005ef57775cde5447e036c91cbd515a | |
parent | Enables processing of hypergrid links through simiangrid services. Thanks (diff) | |
download | opensim-SC_OLD-f394cb2e8f1605809dbf3d5503b9ae00dc1f5180.zip opensim-SC_OLD-f394cb2e8f1605809dbf3d5503b9ae00dc1f5180.tar.gz opensim-SC_OLD-f394cb2e8f1605809dbf3d5503b9ae00dc1f5180.tar.bz2 opensim-SC_OLD-f394cb2e8f1605809dbf3d5503b9ae00dc1f5180.tar.xz |
fix the UsesPhysics flag to reference the physics flag rather than the temponrez flag
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 0585477..8860764 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -210,7 +210,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
210 | /// </remarks> | 210 | /// </remarks> |
211 | public bool UsesPhysics | 211 | public bool UsesPhysics |
212 | { | 212 | { |
213 | get { return (RootPart.Flags & PrimFlags.TemporaryOnRez) != 0; } | 213 | get { return (RootPart.Flags & PrimFlags.Physics) != 0; } |
214 | } | 214 | } |
215 | 215 | ||
216 | /// <summary> | 216 | /// <summary> |