From 090cc9f818035e867a8ecb7b25bea322b5ec5e6a Mon Sep 17 00:00:00 2001 From: Erik Minekus Date: Sat, 4 Dec 2010 15:29:29 -0500 Subject: [PATCH] Fixed sm_rtv printing "unknown command" (bug 4730, r=psychonic). --- plugins/rockthevote.sp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/rockthevote.sp b/plugins/rockthevote.sp index dada295b..370a57ab 100644 --- a/plugins/rockthevote.sp +++ b/plugins/rockthevote.sp @@ -162,12 +162,12 @@ public Action:Command_RTV(client, args) { if (!g_CanRTV || !client) { - return Plugin_Continue; + return Plugin_Handled; } AttemptRTV(client); - return Plugin_Continue; + return Plugin_Handled; } public Action:Command_Say(client, args)