From e60ae3b48c653e746b103f42c713bcd805c2416c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 16 Oct 2000 03:12:03 +0000 Subject: [PATCH] fix the paused message swaparoo --- source/sv_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sv_user.c b/source/sv_user.c index 33f2c56..9f5e997 100644 --- a/source/sv_user.c +++ b/source/sv_user.c @@ -997,7 +997,7 @@ void SV_Pause_f (void) return; } - if (sv.paused) + if (!sv.paused) snprintf (st, sizeof(st), "%s paused the game\n", host_client->name); else snprintf (st, sizeof(st), "%s unpaused the game\n", host_client->name);