mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
Add '-' before each reason for rejecting a team - should make it more readable.
This commit is contained in:
parent
b122be8df6
commit
45abd0bbc1
2
app.js
2
app.js
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user