Fix build break from last commit 9c65207. Mono 2.4 lacks string.join(string, List<string>), or some auto casting is missing

0.7.6-extended
Justin Clark-Casey (justincc) 2013-09-03 17:53:29 +01:00
parent 6570f5dcfe
commit 1e64549acf
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ namespace pCampBot
currentSim != null ? currentSim.Name : "(none)",
bot.ConnectionState,
bot.SimulatorsCount,
string.Join(",", bot.Behaviours.ConvertAll<string>(behaviour => behaviour.AbbreviatedName)));
string.Join(",", bot.Behaviours.ConvertAll<string>(behaviour => behaviour.AbbreviatedName).ToArray()));
}
}