From acb2ebaaf9851439e444b7eef8f7600b3ae01ad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johnny=20Bergstr=C3=B6m?= Date: Tue, 9 Mar 2004 09:38:36 +0000 Subject: [PATCH] fixed link to modules.ini (was in amxx/configs, now is in amxx/) --- amxmodx/meta_api.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amxmodx/meta_api.cpp b/amxmodx/meta_api.cpp index f44116a0..389fbe4f 100755 --- a/amxmodx/meta_api.cpp +++ b/amxmodx/meta_api.cpp @@ -244,7 +244,7 @@ int Spawn( edict_t *pent ) { } // ###### Load modules - int loaded = loadModules( "addons/amxx/configs/modules.ini" ); + int loaded = loadModules( "addons/amxx/modules.ini" ); attachModules(); // Set some info about amx version and modules if ( loaded ){ @@ -977,7 +977,7 @@ C_DLLEXPORT int Meta_Attach(PLUG_LOADTIME now, META_FUNCTIONS *pFunctionTable, m UTIL_MakeNewLogFile(); // ###### Now attach metamod modules - attachMetaModModules( "addons/amxx/configs/modules.ini" ); + attachMetaModModules( "addons/amxx/modules.ini" ); return(TRUE); } @@ -1006,7 +1006,7 @@ C_DLLEXPORT int Meta_Detach(PLUG_LOADTIME now, PL_UNLOAD_REASON reason) { dettachModules(); // ###### Now dettach metamod modules - dettachMetaModModules( "addons/amxx/configs/modules.ini" ); + dettachMetaModModules( "addons/amxx/modules.ini" ); return(TRUE); }