mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
updated is_plugin_loaded() to expect the plugin title
This commit is contained in:
parent
586fcbc21a
commit
a23712bb19
@ -228,14 +228,14 @@ static cell AMX_NATIVE_CALL client_print(AMX *amx, cell *params) /* 3 param */
|
|||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
static cell AMX_NATIVE_CALL show_motd(AMX *amx, cell *params) /* 2 param */
|
static cell AMX_NATIVE_CALL show_motd(AMX *amx, cell *params) /* 3 param */
|
||||||
{
|
{
|
||||||
int ilen;
|
int ilen;
|
||||||
const char* szHead = get_amxstring(amx,params[3],0,ilen);
|
const char* szHead = get_amxstring(amx,params[3],0,ilen);
|
||||||
if ( !ilen ) szHead = hostname->string;
|
if ( !ilen ) szHead = hostname->string;
|
||||||
char* szBody = get_amxstring(amx,params[2],1,ilen);
|
char* szBody = get_amxstring(amx,params[2],1,ilen);
|
||||||
int iFile = 0;
|
int iFile = 0;
|
||||||
char* sToShow = NULL;// = szBody;
|
char* sToShow = NULL; // = szBody;
|
||||||
if (ilen<128) sToShow = (char*)LOAD_FILE_FOR_ME( szBody , &iFile );
|
if (ilen<128) sToShow = (char*)LOAD_FILE_FOR_ME( szBody , &iFile );
|
||||||
if (!iFile)
|
if (!iFile)
|
||||||
sToShow = szBody;
|
sToShow = szBody;
|
||||||
@ -2271,7 +2271,7 @@ static cell AMX_NATIVE_CALL is_plugin_loaded(AMX *amx, cell *params)
|
|||||||
int id = 0;
|
int id = 0;
|
||||||
for (CPluginMngr::iterator iter = g_plugins.begin(); iter; ++iter)
|
for (CPluginMngr::iterator iter = g_plugins.begin(); iter; ++iter)
|
||||||
{
|
{
|
||||||
if (stricmp((*iter).getName(), name) == 0)
|
if (stricmp((*iter).getTitle(), name) == 0)
|
||||||
return id;
|
return id;
|
||||||
++id;
|
++id;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user