aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes
diff options
context:
space:
mode:
authorMic Bowman2011-12-22 16:21:32 -0800
committerMic Bowman2011-12-22 16:21:32 -0800
commitf394cb2e8f1605809dbf3d5503b9ae00dc1f5180 (patch)
tree46791e552005ef57775cde5447e036c91cbd515a /OpenSim/Region/Framework/Scenes
parentEnables processing of hypergrid links through simiangrid services. Thanks (diff)
downloadopensim-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
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs2
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>