diff options
author | Teravus Ovares | 2009-01-03 03:30:03 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-01-03 03:30:03 +0000 |
commit | e9cef70f892bfbf4aad0e4471a958367766d849a (patch) | |
tree | 397e078977b430526a2f04041e0dfb9a5fb99156 /OpenSim/Region/Environment/Scenes/SceneGraph.cs | |
parent | Split agent updates into two messages: full update and position+camera update... (diff) | |
download | opensim-SC-e9cef70f892bfbf4aad0e4471a958367766d849a.zip opensim-SC-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.gz opensim-SC-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.bz2 opensim-SC-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.xz |
* Updates the sim stats module. Cleans out some of the rot.
* Adds a prototype web stats module which is disabled by default. It's functional with one report right now, however, the database structure may change, so I don't recommend enabling this to keep actual stats right now. I'll let you know when it's safe.
* Adds Prototype for ajaxy web content
* removed a warning or two.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneGraph.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneGraph.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneGraph.cs b/OpenSim/Region/Environment/Scenes/SceneGraph.cs index d998dbb..3ffa5c3 100644 --- a/OpenSim/Region/Environment/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Environment/Scenes/SceneGraph.cs | |||
@@ -306,8 +306,19 @@ namespace OpenSim.Region.Environment.Scenes | |||
306 | if (!resultOfObjectLinked) | 306 | if (!resultOfObjectLinked) |
307 | { | 307 | { |
308 | m_numPrim -= ((SceneObjectGroup) Entities[uuid]).Children.Count; | 308 | m_numPrim -= ((SceneObjectGroup) Entities[uuid]).Children.Count; |
309 | |||
310 | if ((((SceneObjectGroup)Entities[uuid]).RootPart.Flags & PrimFlags.Physics) == PrimFlags.Physics) | ||
311 | { | ||
312 | RemovePhysicalPrim(((SceneObjectGroup)Entities[uuid]).Children.Count); | ||
313 | } | ||
309 | } | 314 | } |
315 | |||
316 | |||
317 | |||
310 | Entities.Remove(uuid); | 318 | Entities.Remove(uuid); |
319 | //SceneObjectGroup part; | ||
320 | //((part.RootPart.Flags & PrimFlags.Physics) == PrimFlags.Physics) | ||
321 | |||
311 | 322 | ||
312 | return true; | 323 | return true; |
313 | } | 324 | } |