aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-05-11 02:23:18 +0100
committerJustin Clark-Casey (justincc)2012-05-11 02:23:18 +0100
commitf231ac39de7348965b5c4c04d8b29a885501c90d (patch)
treefdc2d8c7840f9781b585f909e1222a2d37b1be4e /OpenSim/Tools/pCampBot
parentStagger multiple bot logins by 5 seconds to make this part of the test more '... (diff)
downloadopensim-SC_OLD-f231ac39de7348965b5c4c04d8b29a885501c90d.zip
opensim-SC_OLD-f231ac39de7348965b5c4c04d8b29a885501c90d.tar.gz
opensim-SC_OLD-f231ac39de7348965b5c4c04d8b29a885501c90d.tar.bz2
opensim-SC_OLD-f231ac39de7348965b5c4c04d8b29a885501c90d.tar.xz
Increase minimum period between bot actions to 3 seconds, so that teleport doesn't fall under the minimum 2 second limits that clients take to process it
Diffstat (limited to 'OpenSim/Tools/pCampBot')
-rw-r--r--OpenSim/Tools/pCampBot/Bot.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Tools/pCampBot/Bot.cs b/OpenSim/Tools/pCampBot/Bot.cs
index 2b4a171..95dba9f 100644
--- a/OpenSim/Tools/pCampBot/Bot.cs
+++ b/OpenSim/Tools/pCampBot/Bot.cs
@@ -167,10 +167,10 @@ namespace pCampBot
167 Behaviours.ForEach( 167 Behaviours.ForEach(
168 b => 168 b =>
169 { 169 {
170 Thread.Sleep(Random.Next(3000, 10000));
171
170 // m_log.DebugFormat("[pCAMPBOT]: For {0} performing action {1}", Name, b.GetType()); 172 // m_log.DebugFormat("[pCAMPBOT]: For {0} performing action {1}", Name, b.GetType());
171 b.Action(); 173 b.Action();
172
173 Thread.Sleep(Random.Next(1000, 10000));
174 } 174 }
175 ); 175 );
176 } 176 }