Applies patch from Tomarus, Mantis #207 corrects Simulator Stats types.

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1715 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2008-04-07 16:55:46 +00:00
parent 622b2ed6c8
commit 7baa3ffb04
2 changed files with 5 additions and 4 deletions

View File

@@ -915,14 +915,13 @@ namespace libsecondlife
simulator.Stats.PhysicsTime = s.StatValue;
break;
case 8:
simulator.Stats.ImageTime = s.StatValue;
simulator.Stats.AgentTime = s.StatValue;
break;
case 9:
simulator.Stats.ScriptTime = s.StatValue;
simulator.Stats.ImageTime = s.StatValue;
break;
case 10:
//simulator.Stats.OtherTime = s.StatValue;
// This is not othertime, this is something else
simulator.Stats.ScriptTime = s.StatValue;
break;
case 11:
simulator.Stats.Objects = Convert.ToInt32(s.StatValue);