aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot
diff options
context:
space:
mode:
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 }