diff options
-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 79344e8..dac8ccb 100644 --- a/OpenSim/Tools/pCampBot/Bot.cs +++ b/OpenSim/Tools/pCampBot/Bot.cs | |||
@@ -158,7 +158,7 @@ namespace pCampBot | |||
158 | //add additional steps and/or things the bot should do | 158 | //add additional steps and/or things the bot should do |
159 | private void Action() | 159 | private void Action() |
160 | { | 160 | { |
161 | while (true) | 161 | while (ConnectionState != ConnectionState.Disconnecting) |
162 | lock (Behaviours) | 162 | lock (Behaviours) |
163 | Behaviours.ForEach( | 163 | Behaviours.ForEach( |
164 | b => | 164 | b => |
@@ -178,8 +178,8 @@ namespace pCampBot | |||
178 | { | 178 | { |
179 | ConnectionState = ConnectionState.Disconnecting; | 179 | ConnectionState = ConnectionState.Disconnecting; |
180 | 180 | ||
181 | if (m_actionThread != null) | 181 | // if (m_actionThread != null) |
182 | m_actionThread.Abort(); | 182 | // m_actionThread.Abort(); |
183 | 183 | ||
184 | Client.Network.Logout(); | 184 | Client.Network.Logout(); |
185 | } | 185 | } |