Fixed privilege check on incorrect command (zspawn).

This commit is contained in:
richard 2009-10-28 23:39:58 +01:00
parent 9bd4f90137
commit 7cf00bb3a4
1 changed files with 7 additions and 7 deletions

View File

@ -331,13 +331,6 @@ public ZSpawnForceHandle(Handle:menu_zspawn_force, MenuAction:action, client, sl
*/
public Action:ZSpawnCommand(client, argc)
{
// Check if privileged.
if (!ZRIsClientPrivileged(client, OperationType_Generic))
{
TranslationReplyToCommand(client, "No access to command");
return Plugin_Handled;
}
// If client is console, then stop and tell them this feature is for players only.
if (ZRIsConsole(client))
{
@ -361,6 +354,13 @@ public Action:ZSpawnCommand(client, argc)
*/
public Action:ZSpawnForceCommand(client, argc)
{
// Check if privileged.
if (!ZRIsClientPrivileged(client, OperationType_Generic))
{
TranslationReplyToCommand(client, "No access to command");
return Plugin_Handled;
}
// If not enough arguments given, then stop.
if (argc < 1)
{