fixed link to modules.ini (was in amxx/configs, now is in amxx/)

This commit is contained in:
Johnny Bergström 2004-03-09 09:38:36 +00:00
parent 6385e00106
commit acb2ebaaf9

View File

@ -244,7 +244,7 @@ int Spawn( edict_t *pent ) {
} }
// ###### Load modules // ###### Load modules
int loaded = loadModules( "addons/amxx/configs/modules.ini" ); int loaded = loadModules( "addons/amxx/modules.ini" );
attachModules(); attachModules();
// Set some info about amx version and modules // Set some info about amx version and modules
if ( loaded ){ if ( loaded ){
@ -977,7 +977,7 @@ C_DLLEXPORT int Meta_Attach(PLUG_LOADTIME now, META_FUNCTIONS *pFunctionTable, m
UTIL_MakeNewLogFile(); UTIL_MakeNewLogFile();
// ###### Now attach metamod modules // ###### Now attach metamod modules
attachMetaModModules( "addons/amxx/configs/modules.ini" ); attachMetaModModules( "addons/amxx/modules.ini" );
return(TRUE); return(TRUE);
} }
@ -1006,7 +1006,7 @@ C_DLLEXPORT int Meta_Detach(PLUG_LOADTIME now, PL_UNLOAD_REASON reason) {
dettachModules(); dettachModules();
// ###### Now dettach metamod modules // ###### Now dettach metamod modules
dettachMetaModModules( "addons/amxx/configs/modules.ini" ); dettachMetaModModules( "addons/amxx/modules.ini" );
return(TRUE); return(TRUE);
} }