diff options
author | Justin Clark-Casey (justincc) | 2013-09-03 17:53:29 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-04 00:47:51 +0100 |
commit | 1e64549acf3e2c23b41052fce530244f5a5b836c (patch) | |
tree | 26afdc97e4d5b50d4dec0fb83eaf4464a6f0e322 /OpenSim/Tools/pCampBot | |
parent | Show behaviours of pCampbot bots in "show bots" and "show bot" console commands (diff) | |
download | opensim-SC_OLD-1e64549acf3e2c23b41052fce530244f5a5b836c.zip opensim-SC_OLD-1e64549acf3e2c23b41052fce530244f5a5b836c.tar.gz opensim-SC_OLD-1e64549acf3e2c23b41052fce530244f5a5b836c.tar.bz2 opensim-SC_OLD-1e64549acf3e2c23b41052fce530244f5a5b836c.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/pCampBot')
-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 | ||