From ed011618e4f5d73c4a17b5ca8fca167de54fe90a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 31 Oct 2007 06:22:36 +0000 Subject: [PATCH] fixed amb1087 - sm_unmute did not work --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401665 --- plugins/basecomm/gag.sp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/basecomm/gag.sp b/plugins/basecomm/gag.sp index b899ad52..2777aeb2 100644 --- a/plugins/basecomm/gag.sp +++ b/plugins/basecomm/gag.sp @@ -6,7 +6,6 @@ enum CommType CommType_UnGag, CommType_Silence, CommType_UnSilence - }; DisplayGagTypesMenu(client) @@ -433,7 +432,7 @@ public Action:Command_Unmute(client, args) { new target = target_list[i]; - if (g_Muted[target]) + if (!g_Muted[target]) { continue; }