aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-10 20:03:36 +0000
committerJustin Clark-Casey (justincc)2011-11-10 20:03:36 +0000
commit9cba179dff66f7def8f68334893c6db9a65a613e (patch)
tree564e35a50cc9fa899c51a6d3016688f8bd534431 /OpenSim/Tools/pCampBot
parentRemove unused index parameter from BotManager.startupBot(). Rename startupBo... (diff)
downloadopensim-SC_OLD-9cba179dff66f7def8f68334893c6db9a65a613e.zip
opensim-SC_OLD-9cba179dff66f7def8f68334893c6db9a65a613e.tar.gz
opensim-SC_OLD-9cba179dff66f7def8f68334893c6db9a65a613e.tar.bz2
opensim-SC_OLD-9cba179dff66f7def8f68334893c6db9a65a613e.tar.xz
launch pCampbot shutdown console comand asynchronously
Diffstat (limited to 'OpenSim/Tools/pCampBot')
-rw-r--r--OpenSim/Tools/pCampBot/BotManager.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs
index c77e144..f5dd5e0 100644
--- a/OpenSim/Tools/pCampBot/BotManager.cs
+++ b/OpenSim/Tools/pCampBot/BotManager.cs
@@ -233,8 +233,11 @@ namespace pCampBot
233 233
234 private void HandleShutdown(string module, string[] cmd) 234 private void HandleShutdown(string module, string[] cmd)
235 { 235 {
236 m_log.Warn("[BOTMANAGER]: Shutting down bots"); 236 Util.FireAndForget(o =>
237 doBotShutdown(); 237 {
238 m_log.Warn("[BOTMANAGER]: Shutting down bots");
239 doBotShutdown();
240 });
238 } 241 }
239 242
240 private void HandleShowStatus(string module, string[] cmd) 243 private void HandleShowStatus(string module, string[] cmd)