From 0b47029ddeac51c9062d2a82803159266007c851 Mon Sep 17 00:00:00 2001 From: divverent Date: Sat, 26 Nov 2011 13:54:55 +0000 Subject: [PATCH] fix a stupid typo in pausable checking code git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11579 d7cf8633-e32d-0410-b094-e92efae38249 --- host_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host_cmd.c b/host_cmd.c index e5d477cb..350cef0d 100644 --- a/host_cmd.c +++ b/host_cmd.c @@ -1716,7 +1716,7 @@ static void Host_Pause_f (void) { if (cmd_source == src_client) { - if(cls.state == ca_dedicated || host_client == &svs.clients[0]) // non-admin + if(cls.state == ca_dedicated || host_client != &svs.clients[0]) // non-admin { print("Pause not allowed.\n"); return; -- 2.39.2