From 7fe61a99dfb178272c549b2b4e7d6b06c1e133fc Mon Sep 17 00:00:00 2001 From: James R Date: Sun, 23 Feb 2020 18:29:45 -0800 Subject: [PATCH] More plurals --- src/d_netcmd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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