mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 10:28:34 +00:00
Fixed bug in nominations that could cause "Unknown command" error (bug 4797, r=psychonic).
This commit is contained in:
parent
8f3b4afcf7
commit
322a4ed05d
@ -192,13 +192,13 @@ public Action:Command_Nominate(client, args)
|
||||
{
|
||||
if (!client)
|
||||
{
|
||||
return Plugin_Continue;
|
||||
return Plugin_Handled;
|
||||
}
|
||||
|
||||
if (args == 0)
|
||||
{
|
||||
AttemptNominate(client);
|
||||
return Plugin_Continue;
|
||||
return Plugin_Handled;
|
||||
}
|
||||
|
||||
decl String:mapname[64];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user