aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot/BotManager.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-24 17:35:33 +0000
committerJustin Clark-Casey (justincc)2011-11-24 17:35:33 +0000
commitbdcfd6afee5651bd5fc3b4e6a2dfeeb47b983661 (patch)
tree6cc450364e5f4eb2c56019d144635e152028b5b8 /OpenSim/Tools/pCampBot/BotManager.cs
parentPrint out what behaviours are active when pCampBot starts up (diff)
downloadopensim-SC_OLD-bdcfd6afee5651bd5fc3b4e6a2dfeeb47b983661.zip
opensim-SC_OLD-bdcfd6afee5651bd5fc3b4e6a2dfeeb47b983661.tar.gz
opensim-SC_OLD-bdcfd6afee5651bd5fc3b4e6a2dfeeb47b983661.tar.bz2
opensim-SC_OLD-bdcfd6afee5651bd5fc3b4e6a2dfeeb47b983661.tar.xz
Add disabled CrossBehaviour to pCampBot, which is designed to cross test bots between neighbouring regions.
Not yet enabled since there is a bug where the initial cross will work but all subsequent movements on the receiving simulator appear to fail.
Diffstat (limited to 'OpenSim/Tools/pCampBot/BotManager.cs')
-rw-r--r--OpenSim/Tools/pCampBot/BotManager.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs
index 29cb1ba..d91990f 100644
--- a/OpenSim/Tools/pCampBot/BotManager.cs
+++ b/OpenSim/Tools/pCampBot/BotManager.cs
@@ -163,6 +163,9 @@ namespace pCampBot
163 if (behaviourSwitches.Contains("t")) 163 if (behaviourSwitches.Contains("t"))
164 behaviours.Add(new TeleportBehaviour()); 164 behaviours.Add(new TeleportBehaviour());
165 165
166// if (behaviourSwitches.Contains("c"))
167// behaviours.Add(new CrossBehaviour());
168
166 MainConsole.Instance.OutputFormat( 169 MainConsole.Instance.OutputFormat(
167 "[BOT MANAGER]: Bots configured for behaviours {0}", 170 "[BOT MANAGER]: Bots configured for behaviours {0}",
168 string.Join(",", behaviours.ConvertAll<string>(b => b.Name).ToArray())); 171 string.Join(",", behaviours.ConvertAll<string>(b => b.Name).ToArray()));