Add '-' before each reason for rejecting a team - should make it more readable.

This commit is contained in:
Guangcong Luo 2011-12-23 02:20:34 -05:00
parent b122be8df6
commit 45abd0bbc1

2
app.js
View File

@ -1200,7 +1200,7 @@ function Lobby(roomid)
var problems = Tools.validateTeam(user.team, format);
if (problems)
{
user.emit('message', "Your team was rejected for the following reasons:\n\n"+problems.join("\n"));
user.emit('message', "Your team was rejected for the following reasons:\n\n- "+problems.join("\n- "));
return;
}