diff options
author | Justin Clark-Casey (justincc) | 2013-09-03 17:53:29 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-03 17:53:29 +0100 |
commit | a89c56dcf1e2645554f8b81b6f1e517b829cc3a4 (patch) | |
tree | 57ba1c371103ca7d2d25ab19b12602e313a5dd95 /OpenSim/Tools/pCampBot | |
parent | Show behaviours of pCampbot bots in "show bots" and "show bot" console commands (diff) | |
download | opensim-SC-a89c56dcf1e2645554f8b81b6f1e517b829cc3a4.zip opensim-SC-a89c56dcf1e2645554f8b81b6f1e517b829cc3a4.tar.gz opensim-SC-a89c56dcf1e2645554f8b81b6f1e517b829cc3a4.tar.bz2 opensim-SC-a89c56dcf1e2645554f8b81b6f1e517b829cc3a4.tar.xz |
Fix build break from last commit 9c65207. Mono 2.4 lacks string.join(string, List<string>), or some auto casting is missing
Diffstat (limited to '')
-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 35a24d1..7d4af13 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -594,7 +594,7 @@ namespace pCampBot | |||
594 | currentSim != null ? currentSim.Name : "(none)", | 594 | currentSim != null ? currentSim.Name : "(none)", |
595 | bot.ConnectionState, | 595 | bot.ConnectionState, |
596 | bot.SimulatorsCount, | 596 | bot.SimulatorsCount, |
597 | string.Join(",", bot.Behaviours.ConvertAll<string>(behaviour => behaviour.AbbreviatedName))); | 597 | string.Join(",", bot.Behaviours.ConvertAll<string>(behaviour => behaviour.AbbreviatedName).ToArray())); |
598 | } | 598 | } |
599 | } | 599 | } |
600 | 600 | ||