diff options
Diffstat (limited to 'OpenSim/Tools/pCampBot/Bot.cs')
-rw-r--r-- | OpenSim/Tools/pCampBot/Bot.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Tools/pCampBot/Bot.cs b/OpenSim/Tools/pCampBot/Bot.cs index 409734e..0bd0bcc 100644 --- a/OpenSim/Tools/pCampBot/Bot.cs +++ b/OpenSim/Tools/pCampBot/Bot.cs | |||
@@ -130,6 +130,8 @@ namespace pCampBot | |||
130 | BotManager bm, List<IBehaviour> behaviours, | 130 | BotManager bm, List<IBehaviour> behaviours, |
131 | string firstName, string lastName, string password, string loginUri) | 131 | string firstName, string lastName, string password, string loginUri) |
132 | { | 132 | { |
133 | behaviours.ForEach(b => b.Initialize(this)); | ||
134 | |||
133 | Client = new GridClient(); | 135 | Client = new GridClient(); |
134 | 136 | ||
135 | Random = new Random(Environment.TickCount);// We do stuff randomly here | 137 | Random = new Random(Environment.TickCount);// We do stuff randomly here |
@@ -156,7 +158,7 @@ namespace pCampBot | |||
156 | b => | 158 | b => |
157 | { | 159 | { |
158 | // m_log.DebugFormat("[pCAMPBOT]: For {0} performing action {1}", Name, b.GetType()); | 160 | // m_log.DebugFormat("[pCAMPBOT]: For {0} performing action {1}", Name, b.GetType()); |
159 | b.Action(this); | 161 | b.Action(); |
160 | 162 | ||
161 | Thread.Sleep(Random.Next(1000, 10000)); | 163 | Thread.Sleep(Random.Next(1000, 10000)); |
162 | } | 164 | } |