diff options
author | Justin Clark-Casey (justincc) | 2012-05-11 02:23:18 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-05-11 02:23:18 +0100 |
commit | f231ac39de7348965b5c4c04d8b29a885501c90d (patch) | |
tree | fdc2d8c7840f9781b585f909e1222a2d37b1be4e /OpenSim/Tools/pCampBot/Bot.cs | |
parent | Stagger multiple bot logins by 5 seconds to make this part of the test more '... (diff) | |
download | opensim-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 '')
-rw-r--r-- | OpenSim/Tools/pCampBot/Bot.cs | 4 |
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 | } |