diff options
author | Diva Canto | 2015-05-07 12:37:49 -0700 |
---|---|---|
committer | Diva Canto | 2015-05-07 12:37:49 -0700 |
commit | cc1fc400d86440c49c62888a9fc39dd162f3c8e4 (patch) | |
tree | 62a9bef75331cdecfb1a7fe7fbbc62f1a9653bc7 /OpenSim/Tools/pCampBot/BotManager.cs | |
parent | Attempt at fixing mantis #7054. The two inventory threads are stepping on eac... (diff) | |
download | opensim-SC-cc1fc400d86440c49c62888a9fc39dd162f3c8e4.zip opensim-SC-cc1fc400d86440c49c62888a9fc39dd162f3c8e4.tar.gz opensim-SC-cc1fc400d86440c49c62888a9fc39dd162f3c8e4.tar.bz2 opensim-SC-cc1fc400d86440c49c62888a9fc39dd162f3c8e4.tar.xz |
pCampbot: added behavior that mimic initial inventory download. It's not exactly what the viewer does, but it's close enough, and the elapsed time can be measured.
Diffstat (limited to 'OpenSim/Tools/pCampBot/BotManager.cs')
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index 46094d6..0af9592 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -343,6 +343,9 @@ namespace pCampBot | |||
343 | if (abName == "ph2") | 343 | if (abName == "ph2") |
344 | newBehaviour = new PhysicsBehaviour2(); | 344 | newBehaviour = new PhysicsBehaviour2(); |
345 | 345 | ||
346 | if (abName == "inv") | ||
347 | newBehaviour = new InventoryDownloadBehaviour(); | ||
348 | |||
346 | if (newBehaviour != null) | 349 | if (newBehaviour != null) |
347 | { | 350 | { |
348 | behaviours.Add(newBehaviour); | 351 | behaviours.Add(newBehaviour); |