diff options
Diffstat (limited to 'OpenSim/Tools')
-rw-r--r-- | OpenSim/Tools/pCampBot/PhysicsBot.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Tools/pCampBot/PhysicsBot.cs b/OpenSim/Tools/pCampBot/PhysicsBot.cs index 14e9cca..a8b2426 100644 --- a/OpenSim/Tools/pCampBot/PhysicsBot.cs +++ b/OpenSim/Tools/pCampBot/PhysicsBot.cs | |||
@@ -124,11 +124,11 @@ namespace pCampBot | |||
124 | } | 124 | } |
125 | 125 | ||
126 | // TODO: unused: Vector3 pos = client.Self.SimPosition; | 126 | // TODO: unused: Vector3 pos = client.Self.SimPosition; |
127 | Vector3 newpos = new Vector3(somthing.Next(255), somthing.Next(255), somthing.Next(255)); | 127 | Vector3 newpos = new Vector3(somthing.Next(1, 254), somthing.Next(1, 254), somthing.Next(1, 254)); |
128 | client.Self.Movement.TurnToward(newpos); | 128 | client.Self.Movement.TurnToward(newpos); |
129 | 129 | ||
130 | client.Self.Movement.AtPos = true; | 130 | client.Self.Movement.AtPos = true; |
131 | Thread.Sleep(somthing.Next(3000,13000)); | 131 | Thread.Sleep(somthing.Next(3000, 13000)); |
132 | client.Self.Movement.AtPos = false; | 132 | client.Self.Movement.AtPos = false; |
133 | client.Self.Jump(true); | 133 | client.Self.Jump(true); |
134 | 134 | ||