aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-09-03 17:53:29 +0100
committerJustin Clark-Casey (justincc)2013-09-03 17:53:29 +0100
commita89c56dcf1e2645554f8b81b6f1e517b829cc3a4 (patch)
tree57ba1c371103ca7d2d25ab19b12602e313a5dd95 /OpenSim/Tools
parentShow behaviours of pCampbot bots in "show bots" and "show bot" console commands (diff)
downloadopensim-SC_OLD-a89c56dcf1e2645554f8b81b6f1e517b829cc3a4.zip
opensim-SC_OLD-a89c56dcf1e2645554f8b81b6f1e517b829cc3a4.tar.gz
opensim-SC_OLD-a89c56dcf1e2645554f8b81b6f1e517b829cc3a4.tar.bz2
opensim-SC_OLD-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 'OpenSim/Tools')
-rw-r--r--OpenSim/Tools/pCampBot/BotManager.cs2
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