mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
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
This commit is contained in:
@@ -167,10 +167,10 @@ namespace pCampBot
|
||||
Behaviours.ForEach(
|
||||
b =>
|
||||
{
|
||||
Thread.Sleep(Random.Next(3000, 10000));
|
||||
|
||||
// m_log.DebugFormat("[pCAMPBOT]: For {0} performing action {1}", Name, b.GetType());
|
||||
b.Action();
|
||||
|
||||
Thread.Sleep(Random.Next(1000, 10000));
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user