diff options
author | Teravus Ovares | 2007-12-12 14:07:26 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-12-12 14:07:26 +0000 |
commit | 331db2336c4934d1c6cd79eff2719ae18f8ce1af (patch) | |
tree | 66d784680120d5f5bca3994f241d8c33f9ecc96f /OpenSim/Region/Environment/Scenes/InnerScene.cs | |
parent | * Fixed agent counts on the Simulator stats pane (diff) | |
download | opensim-SC_OLD-331db2336c4934d1c6cd79eff2719ae18f8ce1af.zip opensim-SC_OLD-331db2336c4934d1c6cd79eff2719ae18f8ce1af.tar.gz opensim-SC_OLD-331db2336c4934d1c6cd79eff2719ae18f8ce1af.tar.bz2 opensim-SC_OLD-331db2336c4934d1c6cd79eff2719ae18f8ce1af.tar.xz |
* Added Object count to sim stats (it's incorrect, however, it'll be fixed)
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/InnerScene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/InnerScene.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index b274d47..3fe9a7b 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs | |||
@@ -281,6 +281,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
281 | { | 281 | { |
282 | return m_numRootAgents; | 282 | return m_numRootAgents; |
283 | } | 283 | } |
284 | |||
285 | public int GetTotalObjects() | ||
286 | { | ||
287 | return m_numPrim; | ||
288 | } | ||
289 | |||
284 | #endregion | 290 | #endregion |
285 | 291 | ||
286 | #region Get Methods | 292 | #region Get Methods |