You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sprintf(response, "Can't apply: not enough members in your team/guild that have not entered the queue in individual mode, minimum is %d", arena->min_team_players);
897
+
sprintf(response, msg_sd(sd, 459), arena->min_team_players); // Can't apply: not enough members in your team/guild that have not entered the queue in individual mode, minimum is %d
898
898
else
899
-
sprintf(response, "Can't apply: not enough members in your team/guild, minimum is %d", arena->min_team_players);
899
+
sprintf(response, msg_sd(sd, 460), arena->min_team_players); // Can't apply: not enough members in your team/guild, minimum is %d
sprintf(response, "Can't apply: not enough members in your team/party that have not entered the queue in individual mode, minimum is %d", arena->min_team_players);
929
+
sprintf(response, msg_sd(sd, 461), arena->min_team_players); // Can't apply: not enough members in your team/party that have not entered the queue in individual mode, minimum is %d
930
930
else
931
-
sprintf(response, "Can't apply: not enough members in your team/party, minimum is %d",arena->min_team_players);
931
+
sprintf(response, msg_sd(sd, 462), arena->min_team_players); // Can't apply: not enough members in your team/party, minimum is %d
0 commit comments