diff options
author | Justin Clark-Casey (justincc) | 2013-09-03 17:55:20 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-03 17:55:20 +0100 |
commit | 01cb8033a42514728835a18a38f2a18349e83638 (patch) | |
tree | a833f879d6646481df080f37cd242e7ab9a40a3e /OpenSim | |
parent | Fix build break from last commit 9c65207. Mono 2.4 lacks string.join(string,... (diff) | |
download | opensim-SC-01cb8033a42514728835a18a38f2a18349e83638.zip opensim-SC-01cb8033a42514728835a18a38f2a18349e83638.tar.gz opensim-SC-01cb8033a42514728835a18a38f2a18349e83638.tar.bz2 opensim-SC-01cb8033a42514728835a18a38f2a18349e83638.tar.xz |
And fix break in "show bot" from commit 9c65207
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index 7d4af13..3e446af 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -650,7 +650,7 @@ namespace pCampBot | |||
650 | MainConsole.Instance.Output("Settings"); | 650 | MainConsole.Instance.Output("Settings"); |
651 | 651 | ||
652 | ConsoleDisplayList statusCdl = new ConsoleDisplayList(); | 652 | ConsoleDisplayList statusCdl = new ConsoleDisplayList(); |
653 | statusCdl.AddRow("Behaviours", string.Join(", ", bot.Behaviours.ConvertAll<string>(b => b.Name))); | 653 | statusCdl.AddRow("Behaviours", string.Join(", ", bot.Behaviours.ConvertAll<string>(b => b.Name).ToArray())); |
654 | GridClient botClient = bot.Client; | 654 | GridClient botClient = bot.Client; |
655 | statusCdl.AddRow("SEND_AGENT_UPDATES", botClient.Settings.SEND_AGENT_UPDATES); | 655 | statusCdl.AddRow("SEND_AGENT_UPDATES", botClient.Settings.SEND_AGENT_UPDATES); |
656 | 656 | ||