From a784ae1c0fd3b416bdc856cd0af799075af4d626 Mon Sep 17 00:00:00 2001 From: KaidoRen Date: Wed, 15 May 2019 10:05:30 +0500 Subject: [PATCH] Quotation marks replaced by square brackets and change arg name to id --- amxmodx/srvcmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amxmodx/srvcmd.cpp b/amxmodx/srvcmd.cpp index 03a9b63d..4f3cfcc2 100755 --- a/amxmodx/srvcmd.cpp +++ b/amxmodx/srvcmd.cpp @@ -67,7 +67,7 @@ void amx_command() { if (CMD_ARGC() < 3) { - print_srvconsole("Usage: amxx plugin < plugin_id >\nFor a list of plugins, use the \"amxx plugins\" command\n"); + print_srvconsole("Usage: amxx plugin [ id ]\nFor a list of plugins, use the \"amxx plugins\" command\n"); } else { @@ -282,7 +282,7 @@ void amx_command() print_srvconsole(" version - display amxx version info\n"); print_srvconsole(" gpl - print the license\n"); print_srvconsole(" plugins [ criteria ] - list plugins currently loaded or ones matching given search criteria\n"); - print_srvconsole(" plugin < plugin_id > - information about a plugin\n"); + print_srvconsole(" plugin [ id ] - information about a plugin\n"); print_srvconsole(" modules - list modules currently loaded\n"); print_srvconsole(" cvars [ plugin ] [ index ] - list cvars handled by amxx or show information about a cvar if index is provided\n"); print_srvconsole(" cmds [ plugin ] - list commands registered by plugins\n");