diff options
Diffstat (limited to 'OpenSim/Tools/pCampBot/Bot.cs')
-rw-r--r-- | OpenSim/Tools/pCampBot/Bot.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Tools/pCampBot/Bot.cs b/OpenSim/Tools/pCampBot/Bot.cs index 7a73e3f..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 | } |
@@ -226,8 +228,6 @@ namespace pCampBot | |||
226 | MakeDefaultAppearance(wear); | 228 | MakeDefaultAppearance(wear); |
227 | } | 229 | } |
228 | 230 | ||
229 | Client.Self.Jump(true); | ||
230 | |||
231 | // Extract nearby region information. | 231 | // Extract nearby region information. |
232 | Client.Grid.GridRegion += Manager.Grid_GridRegion; | 232 | Client.Grid.GridRegion += Manager.Grid_GridRegion; |
233 | uint xUint, yUint; | 233 | uint xUint, yUint; |