In Top Scripts report, don't show scripts with no or less than 1 microsecond of execution time.

This is to make the report clearer and less confusing.
0.7.3-post-fixes
Justin Clark-Casey (justincc) 2012-03-16 01:46:21 +00:00
parent a74408d1d2
commit 4e5f823595
1 changed files with 6 additions and 0 deletions

View File

@ -904,9 +904,15 @@ namespace OpenSim.Region.CoreModules.World.Estate
foreach (var entry in sortedSceneData)
{
// The object may have been deleted since we received the data.
if (entry.Part == null)
continue;
// Don't show scripts that haven't executed or where execution time is below one microsecond in
// order to produce a more readable report.
if (entry.Measurement < 0.001)
continue;
items++;
SceneObjectGroup so = entry.Part.ParentGroup;