diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 2c2f67250..53bc3e928 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -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