mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
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)
This commit is contained in:
@@ -597,7 +597,7 @@ namespace pCampBot
|
||||
|
||||
List<Simulator> connectedSimulators = bot.Simulators;
|
||||
List<string> simulatorNames = connectedSimulators.ConvertAll<string>(cs => cs.Name);
|
||||
cdl.AddRow("Connections", string.Join(", ", simulatorNames));
|
||||
cdl.AddRow("Connections", string.Join(", ", simulatorNames.ToArray()));
|
||||
|
||||
MainConsole.Instance.Output(cdl.ToString());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user