Fixed bug in nominations that could cause "Unknown command" error (bug 4797, r=psychonic).

This commit is contained in:
Erik Minekus 2011-01-16 20:00:44 -05:00
parent 8f3b4afcf7
commit 322a4ed05d

View File

@ -192,13 +192,13 @@ public Action:Command_Nominate(client, args)
{ {
if (!client) if (!client)
{ {
return Plugin_Continue; return Plugin_Handled;
} }
if (args == 0) if (args == 0)
{ {
AttemptNominate(client); AttemptNominate(client);
return Plugin_Continue; return Plugin_Handled;
} }
decl String:mapname[64]; decl String:mapname[64];