mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
More plurals
This commit is contained in:
parent
dfe6d62d76
commit
7fe61a99df
1 changed files with 3 additions and 2 deletions
|
|
@ -1333,10 +1333,11 @@ VaguePartyDescription (int playernum, int *party_sizes, int default_color)
|
|||
if (size > 1 && size <= MAXSPLITSCREENPLAYERS)
|
||||
{
|
||||
sprintf(description,
|
||||
"\x83%s%c and %d others",
|
||||
"\x83%s%c and %d other%s",
|
||||
name,
|
||||
default_color,
|
||||
( size - 1 )
|
||||
( size - 1 ),
|
||||
( (size > 2) ? "s" : "" )
|
||||
);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue