diff options
author | Justin Clark-Casey (justincc) | 2013-08-20 18:47:52 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-08-20 18:47:52 +0100 |
commit | 4a81465b91b6506200157f8679ae9192cd43b45f (patch) | |
tree | 9d1aa60994b7335d4693259eea90dfba8b47988b /OpenSim | |
parent | Add pCampbot "show bot" console command to show more detailed information on ... (diff) | |
download | opensim-SC_OLD-4a81465b91b6506200157f8679ae9192cd43b45f.zip opensim-SC_OLD-4a81465b91b6506200157f8679ae9192cd43b45f.tar.gz opensim-SC_OLD-4a81465b91b6506200157f8679ae9192cd43b45f.tar.bz2 opensim-SC_OLD-4a81465b91b6506200157f8679ae9192cd43b45f.tar.xz |
Fix build break from last commit a3e1b27 on mono 2.4.3
Looks like this level of mono doesn't have a string.Join() which will take a list rather than an array (or some implicit conversion isn't happening)
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 303c8dd..13912ae 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -597,7 +597,7 @@ namespace pCampBot | |||
597 | 597 | ||
598 | List<Simulator> connectedSimulators = bot.Simulators; | 598 | List<Simulator> connectedSimulators = bot.Simulators; |
599 | List<string> simulatorNames = connectedSimulators.ConvertAll<string>(cs => cs.Name); | 599 | List<string> simulatorNames = connectedSimulators.ConvertAll<string>(cs => cs.Name); |
600 | cdl.AddRow("Connections", string.Join(", ", simulatorNames)); | 600 | cdl.AddRow("Connections", string.Join(", ", simulatorNames.ToArray())); |
601 | 601 | ||
602 | MainConsole.Instance.Output(cdl.ToString()); | 602 | MainConsole.Instance.Output(cdl.ToString()); |
603 | 603 | ||