diff options
author | Justin Clark-Casey (justincc) | 2013-09-03 17:55:20 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-04 00:47:55 +0100 |
commit | a4f7eb5b4d9fe57bf0273d2070c8d109f2c18d77 (patch) | |
tree | 8aa39695751b78425b92bedb53c746c7795943ba | |
parent | Fix build break from last commit 9c65207. Mono 2.4 lacks string.join(string,... (diff) | |
download | opensim-SC_OLD-a4f7eb5b4d9fe57bf0273d2070c8d109f2c18d77.zip opensim-SC_OLD-a4f7eb5b4d9fe57bf0273d2070c8d109f2c18d77.tar.gz opensim-SC_OLD-a4f7eb5b4d9fe57bf0273d2070c8d109f2c18d77.tar.bz2 opensim-SC_OLD-a4f7eb5b4d9fe57bf0273d2070c8d109f2c18d77.tar.xz |
And fix break in "show bot" from commit 9c65207
-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 | ||