From 38008a8e039edcf9fc52919192c305ab36ecde03 Mon Sep 17 00:00:00 2001 From: KliPPy Date: Fri, 1 Sep 2017 15:18:23 +0200 Subject: [PATCH] Fix amx_plugins throwing errors (#456) --- plugins/admincmd.sma | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/admincmd.sma b/plugins/admincmd.sma index 38faa5d9..843d8664 100755 --- a/plugins/admincmd.sma +++ b/plugins/admincmd.sma @@ -1001,13 +1001,13 @@ public cmdPlugins(id, level, cid) if (EndPLID < num) { - formatex(Temp,charsmax(Temp),"----- %L -----",id,"HELP_USE_MORE", EndPLID + 1); + formatex(Temp,charsmax(Temp),"----- %L -----",id,"HELP_USE_MORE", "amx_help", EndPLID + 1); replace_all(Temp,charsmax(Temp),"amx_help","amx_plugins"); console_print(id,"%s",Temp); } else { - formatex(Temp,charsmax(Temp),"----- %L -----",id,"HELP_USE_BEGIN"); + formatex(Temp,charsmax(Temp),"----- %L -----",id,"HELP_USE_BEGIN", "amx_help"); replace_all(Temp,charsmax(Temp),"amx_help","amx_plugins"); console_print(id,"%s",Temp); }